Sha256: f049d0836f6717930491f3fd32f467435ec5957320ca62a570833ca235a71d09

Contents?: true

Size: 1.86 KB

Versions: 1

Compression:

Stored size: 1.86 KB

Contents

module Scrivito
  module Generators
    class InstallGenerator < ::Rails::Generators::Base
      include ::Rails::Generators::Migration

      source_root File.expand_path('../templates', __FILE__)

      def self.next_migration_number(dirname)
        Scrivito::Migration.next_migration_number(current_migration_number(dirname))
      end

      def copy_initializer
        copy_file 'config/initializers/scrivito.rb'
      end

      def copy_obj_and_widget_model
        copy_file 'app/models/obj.rb'
        copy_file 'app/models/widget.rb'
      end

      def copy_cms_controller
        copy_file 'app/controllers/cms_controller.rb'
      end

      def copy_migration
        migration_template 'scrivito/migrate/install_scrivito_migration.rb',
          File.join(Scrivito::Configuration.migration_path, 'install_scrivito_migration.rb')
      end

      def copy_page_resources
        copy_file 'app/models/page.rb'
        copy_file 'app/controllers/page_controller.rb'
        copy_file 'app/views/page/details.html.erb'
        copy_file 'app/views/page/index.html.erb'
        copy_file 'app/views/page/thumbnail.html.erb'
      end

      def copy_image_resources
        copy_file 'app/models/image.rb'
      end

      def copy_headline_widget_resources
        copy_file 'app/models/headline_widget.rb'
        copy_file 'app/views/headline_widget/show.html.erb'
        copy_file 'app/views/headline_widget/thumbnail.html.erb'
      end

      def copy_text_widget_resources
        copy_file 'app/models/text_widget.rb'
        copy_file 'app/views/text_widget/show.html.erb'
        copy_file 'app/views/text_widget/thumbnail.html.erb'
      end

      def copy_image_widget_resources
        copy_file 'app/models/image_widget.rb'
        copy_file 'app/views/image_widget/show.html.erb'
        copy_file 'app/views/image_widget/thumbnail.html.erb'
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
scrivito_sdk-0.30.0 lib/generators/scrivito/install/install_generator.rb