README.rdoc in test_dummy-0.1.4 vs README.rdoc in test_dummy-0.2.0

- old
+ new

@@ -7,23 +7,21 @@ available within ActiveRecord-derived models. There are several ways to declare how to dummy something: class MyModel < ActiveRecord::Base # Pass a block that defines how to dummy this attribute - to_dummy :name do + dummy :name do "user%d" % rand(10e6) end # Pass a block that defines how to dummy several attributes - to_dummy :password, :password_confirmation do + dummy :password, :password_confirmation do 'tester' end # Use one of the pre-defined helper methods to dummy this attribute - to_dummy :nickname, :use => :random_phonetic_string + dummy :nickname, :use => :random_phonetic_string end - -A standard method == Copyright Copyright (c) 2010 Scott Tadman, The Working Group