machinist.gemspec in machinist-2.0.0.beta2 vs machinist.gemspec in machinist-2.0

- old
+ new

@@ -1,78 +1,27 @@ -# Generated by jeweler -# DO NOT EDIT THIS FILE DIRECTLY -# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command # -*- encoding: utf-8 -*- +$:.push File.expand_path("../lib", __FILE__) +require "machinist/version" Gem::Specification.new do |s| - s.name = %q{machinist} - s.version = "2.0.0.beta2" + s.name = "machinist" + s.version = Machinist::VERSION + s.platform = Gem::Platform::RUBY + s.authors = ["Pete Yandell"] + s.email = ["pete@notahat.com"] + s.homepage = "http://github.com/notahat/machinist" + s.summary = "Fixtures aren't fun. Machinist is." - s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version= - s.authors = ["Pete Yandell"] - s.date = %q{2010-07-07} - s.email = %q{pete@notahat.com} - s.extra_rdoc_files = [ - "README.markdown" - ] - s.files = [ - ".gitignore", - "Gemfile", - "MIT-LICENSE", - "README.markdown", - "Rakefile", - "VERSION", - "lib/generators/machinist/install/USAGE", - "lib/generators/machinist/install/install_generator.rb", - "lib/generators/machinist/install/templates/blueprints.rb", - "lib/generators/machinist/install/templates/machinist.rb.erb", - "lib/generators/machinist/model/model_generator.rb", - "lib/machinist.rb", - "lib/machinist/active_record.rb", - "lib/machinist/active_record/blueprint.rb", - "lib/machinist/active_record/lathe.rb", - "lib/machinist/blueprint.rb", - "lib/machinist/configuration.rb", - "lib/machinist/exceptions.rb", - "lib/machinist/lathe.rb", - "lib/machinist/machinable.rb", - "lib/machinist/shop.rb", - "lib/machinist/warehouse.rb", - "machinist.gemspec", - "spec/active_record_spec.rb", - "spec/blueprint_spec.rb", - "spec/exceptions_spec.rb", - "spec/inheritance_spec.rb", - "spec/machinable_spec.rb", - "spec/shop_spec.rb", - "spec/spec_helper.rb", - "spec/support/active_record_environment.rb", - "spec/warehouse_spec.rb" - ] - s.homepage = %q{http://github.com/notahat/machinist} - s.rdoc_options = ["--charset=UTF-8"] + s.rubyforge_project = "machinist" + + s.files = `git ls-files`.split("\n") + s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") + s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.7} - s.summary = %q{Fixtures aren't fun. Machinist is.} - s.test_files = [ - "spec/active_record_spec.rb", - "spec/blueprint_spec.rb", - "spec/exceptions_spec.rb", - "spec/inheritance_spec.rb", - "spec/machinable_spec.rb", - "spec/shop_spec.rb", - "spec/spec_helper.rb", - "spec/support/active_record_environment.rb", - "spec/warehouse_spec.rb" - ] - if s.respond_to? :specification_version then - current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 3 - - if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then - else - end - else - end + s.add_development_dependency "activerecord" + s.add_development_dependency "mysql" + s.add_development_dependency "rake" + s.add_development_dependency "rcov" + s.add_development_dependency "rspec" + s.add_development_dependency "rdoc" end -