1
1
# Generated by jeweler
2
2
# DO NOT EDIT THIS FILE DIRECTLY
3
- # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
# -*- encoding: utf-8 -*-
5
5
6
6
Gem ::Specification . new do |s |
7
7
s . name = %q{yaml_db}
8
- s . version = "0.2.0 "
8
+ s . version = "0.2.1 "
9
9
10
10
s . required_rubygems_version = Gem ::Requirement . new ( ">= 0" ) if s . respond_to? :required_rubygems_version=
11
11
s . authors = [ "Adam Wiggins" , "Orion Henry" ]
12
- s . date = %q{2010-09-27 }
12
+ s . date = %q{2011-10-12 }
13
13
s . description = %q{
14
14
YamlDb 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.
15
15
This 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.
@@ -21,42 +21,30 @@ Any database that has an ActiveRecord adapter should work
21
21
]
22
22
s . files = [
23
23
"README.markdown" ,
24
- "Rakefile" ,
25
- "VERSION" ,
26
- "about.yml" ,
27
- "init.rb" ,
28
- "lib/csv_db.rb" ,
29
- "lib/serialization_helper.rb" ,
30
- "lib/tasks/yaml_db_tasks.rake" ,
31
- "lib/yaml_db.rb" ,
32
- "spec/base.rb" ,
33
- "spec/serialization_helper_base_spec.rb" ,
34
- "spec/serialization_helper_dump_spec.rb" ,
35
- "spec/serialization_helper_load_spec.rb" ,
36
- "spec/serialization_utils_spec.rb" ,
37
- "spec/yaml_dump_spec.rb" ,
38
- "spec/yaml_load_spec.rb" ,
39
- "spec/yaml_utils_spec.rb" ,
40
- "yaml_db.gemspec"
24
+ "Rakefile" ,
25
+ "VERSION" ,
26
+ "about.yml" ,
27
+ "init.rb" ,
28
+ "lib/csv_db.rb" ,
29
+ "lib/serialization_helper.rb" ,
30
+ "lib/tasks/yaml_db_tasks.rake" ,
31
+ "lib/yaml_db.rb" ,
32
+ "spec/base.rb" ,
33
+ "spec/serialization_helper_base_spec.rb" ,
34
+ "spec/serialization_helper_dump_spec.rb" ,
35
+ "spec/serialization_helper_load_spec.rb" ,
36
+ "spec/serialization_utils_spec.rb" ,
37
+ "spec/yaml_dump_spec.rb" ,
38
+ "spec/yaml_load_spec.rb" ,
39
+ "spec/yaml_utils_spec.rb" ,
40
+ "yaml_db.gemspec"
41
41
]
42
42
s . homepage = %q{http://github.com/ludicast/yaml_db}
43
- s . rdoc_options = [ "--charset=UTF-8" ]
44
43
s . require_paths = [ "lib" ]
45
- s . rubygems_version = %q{1.3.7 }
44
+ s . rubygems_version = %q{1.3.9.2 }
46
45
s . summary = %q{yaml_db allows export/import of database into/from yaml files}
47
- s . test_files = [
48
- "spec/base.rb" ,
49
- "spec/serialization_helper_base_spec.rb" ,
50
- "spec/serialization_helper_dump_spec.rb" ,
51
- "spec/serialization_helper_load_spec.rb" ,
52
- "spec/serialization_utils_spec.rb" ,
53
- "spec/yaml_dump_spec.rb" ,
54
- "spec/yaml_load_spec.rb" ,
55
- "spec/yaml_utils_spec.rb"
56
- ]
57
46
58
47
if s . respond_to? :specification_version then
59
- current_version = Gem ::Specification ::CURRENT_SPECIFICATION_VERSION
60
48
s . specification_version = 3
61
49
62
50
if Gem ::Version . new ( Gem ::VERSION ) >= Gem ::Version . new ( '1.2.0' ) then
0 commit comments