Changeset 6244
- Timestamp:
- 02/27/07 01:23:43 (2 years ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (1 diff)
- trunk/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb (modified) (1 diff)
- trunk/railties/lib/rails_generator/generators/components/plugin/templates/MIT-LICENSE (added)
- trunk/railties/lib/rails_generator/generators/components/plugin/templates/README (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r6229 r6244 1 1 *SVN* 2 3 * Added assumption that all plugin creators desire to be sharing individuals and release their work under the MIT license [DHH] 2 4 3 5 * Added source-annotations extractor tasks to rake [Jamis Buck]. This allows you to add FIXME, OPTIMIZE, and TODO comments to your source code that can then be extracted in concert with rake notes (shows all), rake notes:fixme, rake notes:optimize and rake notes:todo. trunk/railties/lib/rails_generator/generators/components/plugin/plugin_generator.rb
r5342 r6244 18 18 19 19 m.template 'README', "#{plugin_path}/README" 20 m.template 'MIT-LICENSE', "#{plugin_path}/MIT-LICENSE" 20 21 m.template 'Rakefile', "#{plugin_path}/Rakefile" 21 22 m.template 'init.rb', "#{plugin_path}/init.rb" trunk/railties/lib/rails_generator/generators/components/plugin/templates/README
r2784 r6244 2 2 <%= "=" * class_name.size %> 3 3 4 Description goes here 4 Introduction goes here. 5 6 7 Example 8 ======= 9 10 Example goes here. 11 12 13 Copyright (c) 2007 [name of plugin creator], released under the MIT license