Class: Spree::CustomUserGenerator

Inherits:
Rails::Generators::NamedBase
  • Object
show all
Includes:
Rails::Generators::Migration, Rails::Generators::ResourceHelpers
Defined in:
lib/generators/spree/custom_user/custom_user_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



34
35
36
37
38
39
40
41
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 34

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

.source_pathsObject



8
9
10
11
12
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 8

def self.source_paths
  paths = superclass.source_paths
  paths << File.expand_path('templates', __dir__)
  paths.flatten
end

Instance Method Details

#check_for_constantObject



14
15
16
17
18
19
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 14

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

#generateObject



21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 21

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

#klassObject



43
44
45
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 43

def klass
  class_name.constantize
end

#table_nameObject



47
48
49
# File 'lib/generators/spree/custom_user/custom_user_generator.rb', line 47

def table_name
  klass.table_name
end