mirror of
https://github.com/thoughtbot/factory_bot.git
synced 2022-11-09 11:43:51 -05:00
Bump version to 2.3.2
This commit is contained in:
parent
1eb7e1bcc5
commit
17eacf0f28
7 changed files with 15 additions and 6 deletions
|
@ -1,3 +1,12 @@
|
|||
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?
|
||||
Refactor internal attribute handling to use an anonymous class instead of
|
||||
faking Ruby's variable resolution. This allows for more sane usage of
|
||||
attributes without having to manage sorting priority because attributes
|
||||
can turn themselves into procs, which are used with define_method on a
|
||||
class so attributes work correctly all the time.
|
||||
|
||||
2.3.1 (November 23, 2011)
|
||||
Remove internally-used associate method from all the FactoryGirl::Proxy subclasses
|
||||
Move around requiring of files
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: .
|
||||
specs:
|
||||
factory_girl (2.3.1)
|
||||
factory_girl (2.3.2)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.1)
|
||||
factory_girl (2.3.2)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.1)
|
||||
factory_girl (2.3.2)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.1)
|
||||
factory_girl (2.3.2)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
PATH
|
||||
remote: /Users/joshuaclayton/dev/gems/factory_girl
|
||||
specs:
|
||||
factory_girl (2.3.1)
|
||||
factory_girl (2.3.2)
|
||||
activesupport
|
||||
|
||||
GEM
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
module FactoryGirl
|
||||
VERSION = "2.3.1"
|
||||
VERSION = "2.3.2"
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue