mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Bump version to 2.4.0
This commit is contained in:
parent
2e2d4903e2
commit
69957ea356
8 changed files with 20 additions and 7 deletions
13
Changelog
13
Changelog
|
@ -1,3 +1,16 @@
|
|||
2.4.0 (January 13, 2012)
|
||||
Refactor internals of Factory Girl to use anonymous class on which attributes
|
||||
get defined
|
||||
Explicitly require Ruby 1.8.7 or higher in gemspec
|
||||
Fix documentation
|
||||
Add Gemnasium status to documentation
|
||||
Supplying a Class to a factory that overrides to_s no longer results in
|
||||
getting the wrong Class constructed
|
||||
Be more agnostic about ORMs when using columns in Factory Girl step
|
||||
definitions
|
||||
Test against Active Record 3.2.0.rc2
|
||||
Update GETTING_STARTED to use Ruby syntax highlighting
|
||||
|
||||
2.3.2 (November 26, 2011)
|
||||
Move logic of where instance.save! is set to Definition
|
||||
Fix method name from aliases_for? to alias_for?
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.2)
|
||||
factory_girl (2.4.0)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module FactoryGirl
|
||||
VERSION = "2.3.2"
|
||||
VERSION = "2.4.0"
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue