Created
March 17, 2012 22:20
-
-
Save 7hunderbird/2065819 to your computer and use it in GitHub Desktop.
Engines Checklist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rails plugin new my_engine --full --mountable | |
| Engines Checklist | |
| * Copy and namespace models, views, controllers, and helpers | |
| * Copy routes | |
| * Copy tests, add :use_route # so your test know which route to hit. | |
| * Configure defaults | |
| * Add dependencies to your gemspec | |
| * Require your dependencies # because bundler doesn't boot strap them, etc. | |
| * If there are external file asset dependancies, they need to be included. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment