Skip to content

Commit f90e06e

Browse files
committed
Regenerated gemspec for version 0.2.0
1 parent 8a601bb commit f90e06e

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

yaml_db.gemspec

+8-7
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,29 @@
55

66
Gem::Specification.new do |s|
77
s.name = %q{yaml_db}
8-
s.version = "0.1.0"
8+
s.version = "0.2.0"
99

1010
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
1111
s.authors = ["Adam Wiggins", "Orion Henry"]
12-
s.date = %q{2009-12-27}
12+
s.date = %q{2010-09-27}
1313
s.description = %q{
1414
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.
1515
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.
1616
Any database that has an ActiveRecord adapter should work
1717
}
1818
s.email = %q{[email protected]}
1919
s.extra_rdoc_files = [
20-
"README"
20+
"README.markdown"
2121
]
2222
s.files = [
23-
"README",
23+
"README.markdown",
2424
"Rakefile",
2525
"VERSION",
2626
"about.yml",
2727
"init.rb",
2828
"lib/csv_db.rb",
2929
"lib/serialization_helper.rb",
30+
"lib/tasks/yaml_db_tasks.rake",
3031
"lib/yaml_db.rb",
3132
"spec/base.rb",
3233
"spec/serialization_helper_base_spec.rb",
@@ -36,12 +37,12 @@ Any database that has an ActiveRecord adapter should work
3637
"spec/yaml_dump_spec.rb",
3738
"spec/yaml_load_spec.rb",
3839
"spec/yaml_utils_spec.rb",
39-
"tasks/yaml_db_tasks.rake"
40+
"yaml_db.gemspec"
4041
]
4142
s.homepage = %q{http://github.com/ludicast/yaml_db}
4243
s.rdoc_options = ["--charset=UTF-8"]
4344
s.require_paths = ["lib"]
44-
s.rubygems_version = %q{1.3.5}
45+
s.rubygems_version = %q{1.3.7}
4546
s.summary = %q{yaml_db allows export/import of database into/from yaml files}
4647
s.test_files = [
4748
"spec/base.rb",
@@ -58,7 +59,7 @@ Any database that has an ActiveRecord adapter should work
5859
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
5960
s.specification_version = 3
6061

61-
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
62+
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
6263
else
6364
end
6465
else

0 commit comments

Comments
 (0)