instiki/vendor/rails/railties/lib/rails_generator/generators/components/controller/templates/controller.rb

8 lines
129 B
Ruby
Raw Normal View History

2007-01-22 14:43:50 +01:00
class <%= class_name %>Controller < ApplicationController
<% for action in actions -%>
def <%= action %>
end
2007-01-22 14:43:50 +01:00
<% end -%>
end