Skip to content

Commit

Permalink
Updated to version 1.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jferris committed Jul 30, 2008
1 parent 027f183 commit 3732413
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
6 changes: 6 additions & 0 deletions Changelog
@@ -1,3 +1,9 @@
1.1.2 (July 30, 2008)
Improved error handling for invalid and undefined factories/attributes
Improved handling of strings vs symbols vs classes
Added a prettier syntax for handling associations
Updated documentation and fixed compatibility with Rails 2.1

1.1.1 (June 23, 2008)
The attribute "name" no longer requires using #add_attribute

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -31,7 +31,7 @@ end

spec = Gem::Specification.new do |s|
s.name = %q{factory_girl}
s.version = "1.1.1"
s.version = "1.1.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
Expand Down
7 changes: 3 additions & 4 deletions factory_girl.gemspec
@@ -1,17 +1,16 @@
Gem::Specification.new do |s|
# poke
s.name = %q{factory_girl}
s.version = "1.1.1"
s.version = "1.1.2"

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-06-23}
s.date = %q{2008-07-30}
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 = ["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/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.has_rdoc = true
s.rdoc_options = ["--line-numbers", "--inline-source", "--main", "README.textile"]
s.require_paths = ["lib"]
Expand Down

0 comments on commit 3732413

Please sign in to comment.