Sha256: e9c8cce27dd961db572ecfb256f77096df691a9b6b7a21a1fc54d4d1c5816188
Contents?: true
Size: 581 Bytes
Versions: 188
Compression:
Stored size: 581 Bytes
Contents
module Rails module Generators class ControllerGenerator < NamedBase argument :actions, :type => :array, :default => [], :banner => "action action" check_class_collision :suffix => "Controller" def create_controller_files template 'controller.rb', File.join('app/controllers', class_path, "#{file_name}_controller.rb") end def add_routes actions.reverse.each do |action| route %{get "#{file_name}/#{action}"} end end hook_for :template_engine, :test_framework, :helper, :assets end end end
Version data entries
188 entries across 149 versions & 19 rubygems