Variety of small changes (mostly to properties) plus a few "in the
[selectricity] / vendor / plugins / engines / generators / engine / templates / init_engine.erb
1 <%= license %>
2
3 module <%= engine_class_name %>
4   module VERSION
5     Major = 0 # change implies compatibility breaking with previous versions
6     Minor = 1 # change implies backwards-compatible change to API
7     Release = 0 # incremented with bug-fixes, updates, etc.
8   end
9 end
10
11 Engines.current.version = <%= engine_class_name %>::VERSION
12
13 # load up all the required files we need...
14 require '<%= engine_underscored_name %>'
15

Benjamin Mako Hill || Want to submit a patch?