instiki/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb
Jacques Distler 5292899c9a Rails 2.1 RC1
Updated Instiki to Rails 2.1 RC1 (aka 2.0.991).
2008-05-17 23:22:34 -05:00

8 lines
129 B
Ruby

class <%= class_name %>Controller < ApplicationController
<% for action in actions -%>
def <%= action %>
end
<% end -%>
end