Class: ShopifyApp::Generators::UserModelGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- ShopifyApp::Generators::UserModelGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/shopify_app/user_model/user_model_generator.rb
Class Method Summary collapse
-
.next_migration_number(dir) ⇒ Object
for generating a timestamp when using ‘create_migration`.
Instance Method Summary collapse
- #create_scopes_storage_in_user_model ⇒ Object
- #create_user_fixtures ⇒ Object
- #create_user_migration ⇒ Object
- #create_user_model ⇒ Object
- #update_shopify_app_initializer ⇒ Object
Class Method Details
.next_migration_number(dir) ⇒ Object
for generating a timestamp when using ‘create_migration`
64 65 66 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 64 def next_migration_number(dir) ActiveRecord::Generators::Base.next_migration_number(dir) end |
Instance Method Details
#create_scopes_storage_in_user_model ⇒ Object
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 21 def create_scopes_storage_in_user_model scopes_column_prompt = <<~PROMPT It is highly recommended that apps record the access scopes granted by \ merchants during app installation. See app/models/user.rb to modify how \ access scopes are stored and retrieved. [WARNING] You will need to update the access_scopes accessors in the User model \ to allow shopify_app to store and retrieve scopes when going through OAuth. The following migration will add an `access_scopes` column to the User model. \ Do you want to include this migration? [y/n] PROMPT if new_shopify_cli_app? || Rails.env.test? || yes?(scopes_column_prompt) migration_template( 'db/migrate/add_user_access_scopes_column.erb', 'db/migrate/add_user_access_scopes_column.rb' ) end end |
#create_user_fixtures ⇒ Object
46 47 48 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 46 def create_user_fixtures copy_file('users.yml', 'test/fixtures/users.yml') end |
#create_user_migration ⇒ Object
17 18 19 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 17 def create_user_migration migration_template('db/migrate/create_users.erb', 'db/migrate/create_users.rb') end |
#create_user_model ⇒ Object
13 14 15 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 13 def create_user_model copy_file('user.rb', 'app/models/user.rb') end |
#update_shopify_app_initializer ⇒ Object
42 43 44 |
# File 'lib/generators/shopify_app/user_model/user_model_generator.rb', line 42 def update_shopify_app_initializer gsub_file('config/initializers/shopify_app.rb', 'ShopifyApp::InMemoryUserSessionStore', 'User') end |