From c88fc365179a0d92a42fd7ed08edb055427f90d4 Mon Sep 17 00:00:00 2001 From: Joe Ferris Date: Fri, 12 Sep 2008 15:59:58 -0400 Subject: [PATCH] Updated the Gem version to 1.1.3 --- Changelog | 3 +++ Rakefile | 2 +- factory_girl.gemspec | 8 ++++---- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/Changelog b/Changelog index ee93e3a..7a67250 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +1.1.3 (September 12, 2008) + Automatically pull in definitions from factories.rb, test/factories.rb, or + spec/factories.rb 1.1.2 (July 30, 2008) Improved error handling for invalid and undefined factories/attributes Improved handling of strings vs symbols vs classes diff --git a/Rakefile b/Rakefile index 176bc1e..884d441 100644 --- a/Rakefile +++ b/Rakefile @@ -31,7 +31,7 @@ end spec = Gem::Specification.new do |s| s.name = %q{factory_girl} - s.version = "1.1.2" + s.version = "1.1.3" 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 diff --git a/factory_girl.gemspec b/factory_girl.gemspec index c2501e8..4f94e78 100644 --- a/factory_girl.gemspec +++ b/factory_girl.gemspec @@ -1,22 +1,22 @@ Gem::Specification.new do |s| s.name = %q{factory_girl} - s.version = "1.1.2" + s.version = "1.1.3" s.specification_version = 2 if s.respond_to? :specification_version= s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version= s.authors = ["Joe Ferris"] - s.date = %q{2008-07-30} + s.date = %q{2008-09-12} 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.textile"] - s.files = ["Changelog", "LICENSE", "Rakefile", "README.textile", "lib/factory_girl/attribute_proxy.rb", "lib/factory_girl/factory.rb", "lib/factory_girl/sequence.rb", "lib/factory_girl.rb", "test/attribute_proxy_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/models.rb", "test/sequence_test.rb", "test/test_helper.rb"] + s.files = ["Changelog", "LICENSE", "Rakefile", "README.textile", "lib/factory_girl/aliases.rb", "lib/factory_girl/attribute.rb", "lib/factory_girl/attribute_proxy.rb", "lib/factory_girl/factory.rb", "lib/factory_girl/sequence.rb", "lib/factory_girl.rb", "test/aliases_test.rb", "test/attribute_proxy_test.rb", "test/attribute_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/models.rb", "test/sequence_test.rb", "test/test_helper.rb"] s.has_rdoc = true s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.textile"] s.require_paths = ["lib"] s.rubygems_version = %q{1.0.1} s.summary = %q{factory_girl provides a framework and DSL for defining and using model instance factories.} - s.test_files = ["test/attribute_proxy_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/sequence_test.rb"] + s.test_files = ["test/aliases_test.rb", "test/attribute_proxy_test.rb", "test/attribute_test.rb", "test/factory_test.rb", "test/integration_test.rb", "test/sequence_test.rb"] s.add_dependency(%q, [">= 1.0"]) end