Sha256: 0ffc1d3bd0c9b106548ea2782ae430887ebed7b510e7d49e33ae92dbe2463755
Contents?: true
Size: 1.48 KB
Versions: 97
Compression:
Stored size: 1.48 KB
Contents
module Spree class CustomUserGenerator < Rails::Generators::NamedBase include Rails::Generators::ResourceHelpers include Rails::Generators::Migration desc 'Set up a Spree installation with a custom User class' def self.source_paths paths = superclass.source_paths paths << File.expand_path('templates', __dir__) paths.flatten end def check_for_constant klass rescue NameError @shell.say "Couldn't find #{class_name}. Are you sure that this class exists within your application and is loaded?", :red exit(1) end def generate migration_template 'migration.rb.tt', 'db/migrate/add_spree_fields_to_custom_user_table.rb' template 'authentication_helpers.rb.tt', 'lib/spree/authentication_helpers.rb' file_action = File.exist?('config/initializers/spree.rb') ? :append_file : :create_file send(file_action, 'config/initializers/spree.rb') do %Q{ Rails.application.config.to_prepare do require_dependency 'spree/authentication_helpers' end\n} end end def self.next_migration_number(dirname) if ApplicationRecord.timestamped_migrations sleep 1 # make sure to get a different migration every time Time.new.utc.strftime('%Y%m%d%H%M%S') else format('%.3d', (current_migration_number(dirname) + 1)) end end def klass class_name.constantize end def table_name klass.table_name end end end
Version data entries
97 entries across 97 versions & 1 rubygems