Sha256: 8d2ccd6e320152ee98b33996e3e1ba27348cf7b9a0c1f8e8d05e08dcb2e7a0cb
Contents?: true
Size: 1.87 KB
Versions: 3
Compression:
Stored size: 1.87 KB
Contents
require 'rails/generators/base' module ShopifyApp module Generators class InstallGenerator < Rails::Generators::Base include Rails::Generators::Migration source_root File.expand_path('../templates', __FILE__) class_option :application_name, type: :array, default: ['My', 'Shopify', 'App'] class_option :api_key, type: :string, default: '<api_key>' class_option :secret, type: :string, default: '<secret>' class_option :scope, type: :array, default: ['read_orders,', 'read_products'] class_option :embedded, type: :string, default: 'true' def create_shopify_app_initializer @application_name = format_array_argument(options['application_name']) @api_key = options['api_key'] @secret = options['secret'] @scope = format_array_argument(options['scope']) template 'shopify_app.rb', 'config/initializers/shopify_app.rb' end def create_and_inject_into_omniauth_initializer unless File.exist? "config/initializers/omniauth.rb" copy_file 'omniauth.rb', 'config/initializers/omniauth.rb' end inject_into_file( 'config/initializers/omniauth.rb', File.read(File.expand_path(find_in_source_paths('shopify_provider.rb'))), after: "Rails.application.config.middleware.use OmniAuth::Builder do\n" ) end def create_embedded_app_layout if embedded_app? copy_file 'embedded_app.html.erb', 'app/views/layouts/embedded_app.html.erb' copy_file '_flash_messages.html.erb', 'app/views/layouts/_flash_messages.html.erb' end end def mount_engine route "mount ShopifyApp::Engine, at: '/'" end private def embedded_app? options['embedded'] == 'true' end def format_array_argument(array) array.join(' ').tr('"', '') end end end end
Version data entries
3 entries across 3 versions & 1 rubygems