This repository has been archived by the owner on Aug 23, 2022. It is now read-only.
forked from yamldb/yaml_db
-
Notifications
You must be signed in to change notification settings - Fork 3
/
yaml_db.gemspec
57 lines (52 loc) · 2.04 KB
/
yaml_db.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "yaml_db_with_schema_tables"
s.version = "0.3.4"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Adam Wiggins", "Orion Henry", "Martin Honermeyer"]
s.date = "2017-12-04"
s.description = "\nYamlDb is a database-independent format for dumping and restoring data. It complements the the database-independent schema format found in db/schema.rb. The data is saved into db/data.yml.\nThis can be used as a replacement for mysqldump or pg_dump, but only for the databases typically used by Rails apps. Users, permissions, schemas, triggers, and other advanced database features are not supported - by design.\nAny database that has an ActiveRecord adapter should work\n"
s.email = "[email protected]"
s.extra_rdoc_files = [
"README.markdown"
]
s.files = [
".travis.yml",
"README.markdown",
"Rakefile",
"VERSION",
"about.yml",
"init.rb",
"lib/csv_db.rb",
"lib/json_db.rb",
"lib/serialization_helper.rb",
"lib/tasks/yaml_db_tasks.rake",
"lib/yaml_db.rb",
"lib/yaml_db_with_schema_tables.rb",
"spec/base.rb",
"spec/serialization_helper_base_spec.rb",
"spec/serialization_helper_dump_spec.rb",
"spec/serialization_helper_load_spec.rb",
"spec/serialization_utils_spec.rb",
"spec/json_dump_spec.rb",
"spec/json_load_spec.rb",
"spec/yaml_dump_spec.rb",
"spec/yaml_load_spec.rb",
"spec/yaml_utils_spec.rb",
"yaml_db.gemspec"
]
s.homepage = "http://github.com/zweitag/yaml_db"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.17"
s.summary = "yaml_db allows export/import of database into/from yaml/json files"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end