Sha256: e7fde496aeee64657eb7fcf72d12980bd9ddaa85970f883c4a3093af283e0d1e

Contents?: true

Size: 877 Bytes

Versions: 2

Compression:

Stored size: 877 Bytes

Contents

require 'rails/generators/base'

module ShopifyApp
  module Generators
    class HomeControllerGenerator < Rails::Generators::Base
      source_root File.expand_path('../templates', __FILE__)

      def create_home_controller
        template 'home_controller.rb', 'app/controllers/home_controller.rb'
      end

      def create_home_index_view
        copy_file 'index.html.erb', 'app/views/home/index.html.erb'
        if embedded_app?
          prepend_to_file(
            'app/views/home/index.html.erb',
            File.read(File.expand_path(find_in_source_paths('shopify_app_ready_script.html.erb')))
          )
        end
      end

      def add_home_index_route
        route "mount ShopifyApp::Engine, at: '/'"
        route "root :to => 'home#index'"
      end

      def embedded_app?
        ShopifyApp.configuration.embedded_app?
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
shopify_app-6.4.2 lib/generators/shopify_app/home_controller/home_controller_generator.rb
shopify_app-6.4.1 lib/generators/shopify_app/home_controller/home_controller_generator.rb