Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 373
- Log:
Initial import of Radiant 0.9.1, which is now packaged as a gem. This is an
import of the tagged 0.9.1 source checked out from GitHub, which isn't quite
the same as the gem distribution - but it doesn't seem to be available in an
archived form and the installed gem already has modifications, so this is
the closest I can get.
- Author:
- rool
- Date:
- Mon Mar 21 13:40:05 +0000 2011
- Size:
- 806 Bytes
1 | Description: |
2 | Stubs out a new mailer and its views for the given extension. |
3 | Pass the mailer name, either CamelCased or under_scored, |
4 | and an optional list of emails as arguments. |
5 | |
6 | This generates a mailer class in app/models, view templates in |
7 | app/views/mailer_name, a unit test in test/unit, and fixtures in |
8 | test/fixtures. |
9 | |
10 | Example: |
11 | `./script/generate extension_mailer MyExt Notifications signup forgot_password invoice` |
12 | |
13 | creates a Notifications mailer class, views, test, and fixtures: |
14 | Mailer: vendor/my_ext/app/models/notifications.rb |
15 | Views: vendor/my_ext/app/views/notifications/signup.erb [...] |
16 | Test: vendor/my_ext/test/unit/test/unit/notifications_test.rb |
17 | Fixtures: vendor/my_ext/test/fixtures/notifications/signup [...] |