Class: ShopifyApp::Generators::ShopifyAppGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Defined in:
lib/generators/shopify_app/shopify_app_generator.rb

Instance Method Summary collapse

Constructor Details

#initialize(args, *options) ⇒ ShopifyAppGenerator

Returns a new instance of ShopifyAppGenerator.



5
6
7
8
# File 'lib/generators/shopify_app/shopify_app_generator.rb', line 5

def initialize(args, *options)
  @opts = options.first
  super(args, *options)
end

Instance Method Details

#run_all_generatorsObject



10
11
12
13
14
15
16
17
18
# File 'lib/generators/shopify_app/shopify_app_generator.rb', line 10

def run_all_generators
  generate "shopify_app:install #{@opts.join(' ')}"
  generate "shopify_app:home_controller"
  generate "shopify_app:shop_model"

  generate "shopify_app:controllers"
  generate "shopify_app:views"
  generate "shopify_app:routes"
end