Sha256: cc895ff90a47096394ef72271c9a0063ca2ce1b2ed2cce8dead4b474c3dc8bfe
Contents?: true
Size: 1.65 KB
Versions: 2
Compression:
Stored size: 1.65 KB
Contents
<% module_namespacing do -%> class <%= controller_class_name %>Controller < ApplicationController <%= controller_before_filter %> :set_<%= singular_table_name %>, only: [:show, :edit, :update, :destroy] respond_to :html <% unless options[:singleton] -%> def index @<%= plural_table_name %> = <%= orm_class.all(class_name) %> respond_with(@<%= plural_table_name %>) end <% end -%> def show respond_with(@<%= singular_table_name %>) end def new @<%= singular_table_name %> = <%= orm_class.build(class_name) %> respond_with(@<%= singular_table_name %>) end def edit end def create @<%= singular_table_name %> = <%= orm_class.build(class_name, attributes_params) %> <%= "flash[:notice] = '#{class_name} was successfully created.' if " if flash? %>@<%= orm_instance.save %> respond_with(@<%= singular_table_name %>) end def update <%= "flash[:notice] = '#{class_name} was successfully updated.' if " if flash? %>@<%= orm_instance_update(attributes_params) %> respond_with(@<%= singular_table_name %>) end def destroy @<%= orm_instance.destroy %> respond_with(@<%= singular_table_name %>) end private def set_<%= singular_table_name %> @<%= singular_table_name %> = <%= orm_class.find(class_name, "params[:id]") %> end <%- if strong_parameters_defined? -%> def <%= "#{singular_table_name}_params" %> <%- if attributes_names.empty? -%> params[:<%= singular_table_name %>] <%- else -%> params.require(:<%= singular_table_name %>).permit(<%= attributes_names.map { |name| ":#{name}" }.join(', ') %>) <%- end -%> end <%- end -%> end <% end -%>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
responders-1.1.2 | lib/generators/rails/templates/controller.rb |
responders-2.0.2 | lib/generators/rails/templates/controller.rb |