Sha256: 2e87fcbd756705fdc87b9168aeed0c4f1fe5e3999bc76e6444f5ec0570330768

Contents?: true

Size: 1.3 KB

Versions: 15

Compression:

Stored size: 1.3 KB

Contents

# rails generate effective:controller NAME [action action] [options]

# Generates a controller
# rails generate effective:controller Thing
# rails generate effective:controller Thing index edit create
# rails generate effective:controller Thing index edit create --attributes name:string description:text

module Effective
  module Generators
    class ControllerGenerator < Rails::Generators::NamedBase
      include Helpers

      source_root File.expand_path(('../' * 4) + 'lib/scaffolds', __FILE__)

      desc 'Creates a controller in your app/controllers folder.'

      argument :actions, type: :array, default: ['crud'], banner: 'action action'
      class_option :attributes, type: :array, default: [], desc: 'Included permitted params, otherwise read from model'

      def validate_resource
        exit unless resource_valid?
      end

      def assign_actions
        @actions = invoked_actions
      end

      def assign_attributes
        @attributes = invoked_attributes.presence || resource.belong_tos_attributes.merge(resource_attributes)
        self.class.send(:attr_reader, :attributes)
      end

      def invoke_controller
        say_status :invoke, :controller, :white
      end

      def create_controller
        template 'controllers/controller.rb', resource.controller_file
      end

    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
effective_developer-0.6.14 lib/generators/effective/controller_generator.rb
effective_developer-0.6.13 lib/generators/effective/controller_generator.rb
effective_developer-0.6.12 lib/generators/effective/controller_generator.rb
effective_developer-0.6.11 lib/generators/effective/controller_generator.rb
effective_developer-0.6.10 lib/generators/effective/controller_generator.rb
effective_developer-0.6.9 lib/generators/effective/controller_generator.rb
effective_developer-0.6.8 lib/generators/effective/controller_generator.rb
effective_developer-0.6.7 lib/generators/effective/controller_generator.rb
effective_developer-0.6.6 lib/generators/effective/controller_generator.rb
effective_developer-0.6.5 lib/generators/effective/controller_generator.rb
effective_developer-0.6.4 lib/generators/effective/controller_generator.rb
effective_developer-0.6.3 lib/generators/effective/controller_generator.rb
effective_developer-0.6.2 lib/generators/effective/controller_generator.rb
effective_developer-0.6.1 lib/generators/effective/controller_generator.rb
effective_developer-0.6.0 lib/generators/effective/controller_generator.rb