migration_tools.gemspec in migration_tools-0.1.7 vs migration_tools.gemspec in migration_tools-0.2.1
- old
+ new
@@ -1,64 +1,11 @@
-# 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 = %q{migration_tools}
- s.version = "0.1.7"
-
- s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
+Gem::Specification.new "migration_tools", "0.2.1" do |s|
+ s.description = "Rake tasks for Rails that add groups to migrations"
+ s.summary = "Encourage migrations that do not require downtime"
+ s.homepage = "http://github.com/morten/migration_tools"
+ s.license = "MIT"
+ s.email = "morten@zendesk.com"
s.authors = ["Morten Primdahl"]
- s.date = %q{2011-09-08}
- s.description = %q{Suite of task extensions for Rails 2.3 that makes managing migrations easier of more nimble}
- s.email = %q{morten@zendesk.com}
- s.extra_rdoc_files = [
- "LICENSE.txt",
- "README.rdoc"
- ]
- s.files = [
- "Gemfile",
- "Gemfile.lock",
- "LICENSE.txt",
- "README.rdoc",
- "Rakefile",
- "VERSION",
- "lib/migration_tools.rb",
- "lib/migration_tools/migration_extension.rb",
- "lib/migration_tools/tasks.rb",
- "migration_tools.gemspec",
- "test/helper.rb",
- "test/test_migration_tools.rb"
- ]
- s.homepage = %q{http://github.com/morten/migration_tools}
- s.licenses = ["MIT"]
- s.require_paths = ["lib"]
- s.rubygems_version = %q{1.6.2}
- s.summary = %q{Helpful Rails 2.3 migration tools}
- s.test_files = [
- "test/helper.rb",
- "test/test_migration_tools.rb"
- ]
-
- if s.respond_to? :specification_version then
- s.specification_version = 3
-
- if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
- s.add_runtime_dependency(%q<activerecord>, ["~> 2.3.11"])
- s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
- s.add_development_dependency(%q<jeweler>, ["~> 1.5.1"])
- s.add_development_dependency(%q<mocha>, ["~> 0.9.8"])
- else
- s.add_dependency(%q<activerecord>, ["~> 2.3.11"])
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
- s.add_dependency(%q<mocha>, ["~> 0.9.8"])
- end
- else
- s.add_dependency(%q<activerecord>, ["~> 2.3.11"])
- s.add_dependency(%q<bundler>, ["~> 1.0.0"])
- s.add_dependency(%q<jeweler>, ["~> 1.5.1"])
- s.add_dependency(%q<mocha>, ["~> 0.9.8"])
- end
+ s.files = `git ls-files`.split("\n")
+ s.license = "MIT"
+ s.add_runtime_dependency "activerecord"
end
-