Sha256: 6fd918601a0f7ad942d91f2262eee66621b852a2ed253f072ecbce1f6006c3d6

Contents?: true

Size: 1.26 KB

Versions: 15

Compression:

Stored size: 1.26 KB

Contents

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

# Generates a view
# rails generate effective:views Thing
# rails generate effective:views Thing index show new
# rails generate effective:views Thing index show --attributes name:string description:text

module Effective
  module Generators
    class ViewsGenerator < Rails::Generators::NamedBase
      include Helpers
      source_root File.expand_path(('../' * 4) + 'lib/scaffolds', __FILE__)

      desc 'Creates views in your app/views folder.'

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

      def validate_resource
        exit unless resource_valid?
      end

      def assign_attributes
        @attributes = (invoked_attributes.presence || resource_attributes).except(:archived)
        self.class.send(:attr_reader, :attributes)
      end

      def invoke_views
        say_status :invoke, :views, :white
      end

      def create_views
        if invoked_actions.include?('show') || non_crud_actions.present?
          template 'views/_resource.html.haml', resource.view_file(resource.name, partial: true)
        end
      end

    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

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