public
Description: replacement for fixtures in rails tests. sweet metaprogramming to build/create valid/default models and attribute hashes.
Homepage: http://blog.internautdesign.com/2008/6/4/factories-and-workers-plugin
Clone URL: git://github.com/dfl/factories-and-workers.git
dfl (author)
Wed Dec 10 12:28:54 -0800 2008
commit  cfec04c879181dadb5a8e715549eb1fb8462cc6e
tree    db9932c9e0ba29a46b956d2114495ae928286223
parent  c2984ee99c66c71691b59e9d02631d014d05e3ab
factories-and-workers / CHANGELOG
100644 29 lines (18 sloc) 0.968 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
* [12/10/2008] - 0.1.6
  
  Disabling Workers for now because the method missing causes problems with ./script/generate,
  and workers are not that useful in their current state.
 
* [10/22/2008] - 0.1.4
  
  Prevent rails/init from loading factories.rb, etc. if inside rake db:*
 
* [10/22/2008] - 0.1.3
 
  FactoryBuilder was using #classify which also calls #singularize... now uses camelize instead.
  Removed use of const_get in favor of #constantize
  Removed use of method missing in factory_builder
  Removed TestFactories module namespace from factories.rb.. back to mixing into Object
 
* [10/15/2008] - 0.1.1
 
  Fixed problems with ./script/generate migration and method missing
  factories.rb now requires a TestFactories module namespace
 
* [10/14/2008] - 0.1.0
  
  Fixed problem with rails/init.rb
    
* [08/05/2008] - 0.0.1 (gem release)
  
  Initial release as a gem.
  Removed some Rails specific code, but the gem is still dependent on ActiveRecord.