From da6ff9f4da9b8cf514d2ac7351b50e598bcc0979 Mon Sep 17 00:00:00 2001 From: Nick Quaranto Date: Wed, 15 Jul 2009 13:20:19 -0400 Subject: [PATCH] Bumping to version 1.2.2 --- Rakefile | 3 ++- factory_girl.gemspec | 20 +++++++++++--------- 2 files changed, 13 insertions(+), 10 deletions(-) diff --git a/Rakefile b/Rakefile index d01ee49..b1629d0 100644 --- a/Rakefile +++ b/Rakefile @@ -37,7 +37,7 @@ end spec = Gem::Specification.new do |s| s.name = %q{factory_girl} - s.version = "1.2.1" + s.version = "1.2.2" s.summary = %q{factory_girl provides a framework and DSL for defining and using model instance factories.} s.description = %q{factory_girl provides a framework and DSL for defining and @@ -54,6 +54,7 @@ spec = Gem::Specification.new do |s| s.authors = ["Joe Ferris"] s.email = %q{jferris@thoughtbot.com} + s.homepage = "http://thoughtbot.com/projects/factory_girl" s.platform = Gem::Platform::RUBY end diff --git a/factory_girl.gemspec b/factory_girl.gemspec index 9845bcd..a6768ab 100644 --- a/factory_girl.gemspec +++ b/factory_girl.gemspec @@ -2,25 +2,27 @@ Gem::Specification.new do |s| s.name = %q{factory_girl} - s.version = "1.2.1" + s.version = "1.2.2" s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Joe Ferris"] - s.date = %q{2009-04-09} - s.description = %q{factory_girl provides a framework and DSL for defining and using factories - less error-prone, more explicit, and all-around easier to work with than fixtures.} + s.date = %q{2009-07-15} + s.description = %q{factory_girl provides a framework and DSL for defining and + using factories - less error-prone, more explicit, and + all-around easier to work with than fixtures.} s.email = %q{jferris@thoughtbot.com} s.extra_rdoc_files = ["README.rdoc"] - s.files = ["Changelog", "CONTRIBUTION_GUIDELINES.rdoc", "LICENSE", "Rakefile", "README.rdoc", "lib/factory_girl/aliases.rb", "lib/factory_girl/attribute/association.rb", "lib/factory_girl/attribute/dynamic.rb", "lib/factory_girl/attribute/static.rb", "lib/factory_girl/attribute.rb", "lib/factory_girl/factory.rb", "lib/factory_girl/proxy/attributes_for.rb", "lib/factory_girl/proxy/build.rb", "lib/factory_girl/proxy/create.rb", "lib/factory_girl/proxy/stub.rb", "lib/factory_girl/proxy.rb", "lib/factory_girl/sequence.rb", "lib/factory_girl/syntax/blueprint.rb", "lib/factory_girl/syntax/generate.rb", "lib/factory_girl/syntax/make.rb", "lib/factory_girl/syntax/sham.rb", "lib/factory_girl/syntax.rb", "lib/factory_girl.rb", "test/aliases_test.rb", "test/association_attribute_test.rb", "test/attribute_test.rb", "test/attributes_for_strategy_test.rb", "test/build_strategy_test.rb", "test/create_strategy_test.rb", "test/dynamic_attribute_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/models.rb", "test/sequence_test.rb", "test/static_attribute_test.rb", "test/strategy_test.rb", "test/stub_strategy_test.rb", "test/syntax/blueprint_test.rb", "test/syntax/generate_test.rb", "test/syntax/make_test.rb", "test/syntax/sham_test.rb", "test/test_helper.rb"] - s.has_rdoc = true - s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.rdoc"] + s.files = ["Changelog", "CONTRIBUTION_GUIDELINES.rdoc", "LICENSE", "Rakefile", "README.rdoc", "lib/factory_girl/aliases.rb", "lib/factory_girl/attribute/association.rb", "lib/factory_girl/attribute/dynamic.rb", "lib/factory_girl/attribute/static.rb", "lib/factory_girl/attribute.rb", "lib/factory_girl/factory.rb", "lib/factory_girl/proxy/attributes_for.rb", "lib/factory_girl/proxy/build.rb", "lib/factory_girl/proxy/create.rb", "lib/factory_girl/proxy/stub.rb", "lib/factory_girl/proxy.rb", "lib/factory_girl/sequence.rb", "lib/factory_girl/syntax/blueprint.rb", "lib/factory_girl/syntax/generate.rb", "lib/factory_girl/syntax/make.rb", "lib/factory_girl/syntax/sham.rb", "lib/factory_girl/syntax.rb", "lib/factory_girl.rb", "spec/factory_girl/aliases_spec.rb", "spec/factory_girl/attribute/association_spec.rb", "spec/factory_girl/attribute/dynamic_spec.rb", "spec/factory_girl/attribute/static_spec.rb", "spec/factory_girl/attribute_spec.rb", "spec/factory_girl/factory_spec.rb", "spec/factory_girl/proxy/attributes_for_spec.rb", "spec/factory_girl/proxy/build_spec.rb", "spec/factory_girl/proxy/create_spec.rb", "spec/factory_girl/proxy/stub_spec.rb", "spec/factory_girl/proxy_spec.rb", "spec/factory_girl/sequence_spec.rb", "spec/factory_girl/syntax/blueprint_spec.rb", "spec/factory_girl/syntax/generate_spec.rb", "spec/factory_girl/syntax/make_spec.rb", "spec/factory_girl/syntax/sham_spec.rb", "spec/integration_spec.rb", "spec/models.rb", "spec/spec_helper.rb"] + s.homepage = %q{http://thoughtbot.com/projects/factory_girl} + s.rdoc_options = ["--line-numbers", "--main", "README.rdoc"] s.require_paths = ["lib"] - s.rubygems_version = %q{1.3.1} + s.rubygems_version = %q{1.3.4} s.summary = %q{factory_girl provides a framework and DSL for defining and using model instance factories.} - s.test_files = ["test/aliases_test.rb", "test/association_attribute_test.rb", "test/attribute_test.rb", "test/attributes_for_strategy_test.rb", "test/build_strategy_test.rb", "test/create_strategy_test.rb", "test/dynamic_attribute_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/sequence_test.rb", "test/static_attribute_test.rb", "test/strategy_test.rb", "test/stub_strategy_test.rb", "test/syntax/blueprint_test.rb", "test/syntax/generate_test.rb", "test/syntax/make_test.rb", "test/syntax/sham_test.rb"] + s.test_files = ["spec/factory_girl/aliases_spec.rb", "spec/factory_girl/attribute/association_spec.rb", "spec/factory_girl/attribute/dynamic_spec.rb", "spec/factory_girl/attribute/static_spec.rb", "spec/factory_girl/attribute_spec.rb", "spec/factory_girl/factory_spec.rb", "spec/factory_girl/proxy/attributes_for_spec.rb", "spec/factory_girl/proxy/build_spec.rb", "spec/factory_girl/proxy/create_spec.rb", "spec/factory_girl/proxy/stub_spec.rb", "spec/factory_girl/proxy_spec.rb", "spec/factory_girl/sequence_spec.rb", "spec/factory_girl/syntax/blueprint_spec.rb", "spec/factory_girl/syntax/generate_spec.rb", "spec/factory_girl/syntax/make_spec.rb", "spec/factory_girl/syntax/sham_spec.rb", "spec/integration_spec.rb"] if s.respond_to? :specification_version then current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION - s.specification_version = 2 + s.specification_version = 3 if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then else