aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/generators/rails/observer/USAGE
diff options
context:
space:
mode:
Diffstat (limited to 'railties/lib/generators/rails/observer/USAGE')
-rw-r--r--railties/lib/generators/rails/observer/USAGE13
1 files changed, 13 insertions, 0 deletions
diff --git a/railties/lib/generators/rails/observer/USAGE b/railties/lib/generators/rails/observer/USAGE
new file mode 100644
index 0000000000..fca4907ca6
--- /dev/null
+++ b/railties/lib/generators/rails/observer/USAGE
@@ -0,0 +1,13 @@
+Description:
+ Stubs out a new observer. Pass the observer name, either CamelCased or
+ under_scored, as an argument.
+
+ The generator creates an observer class in app/models and a unit test in
+ the configured test framework.
+
+Example:
+ `./script/generate observer Account`
+
+ creates an Account observer and invoke the test framework:
+ Observer: app/models/account_observer.rb
+ TestUnit: test/unit/account_observer_test.rb