class EffectiveOrders::Generators::InstallGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 10
def self.next_migration_number(dirname)
  unless ActiveRecord::Base.timestamped_migrations
    Time.new.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

Public Instance Methods

copy_initializer() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 22
def copy_initializer
  template ('../' * 3) + 'config/effective_orders.rb', 'config/initializers/effective_orders.rb'
end
copy_mailer_layout() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 26
def copy_mailer_layout
  layout = 'app/views/layouts/effective_orders_mailer_layout.html.haml'
  template ('../' * 3) + layout, layout
end
copy_mailer_preview() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 39
def copy_mailer_preview
  mailer_preview_path = (Rails.application.config.action_mailer.preview_path rescue nil)

  if mailer_preview_path.present?
    template 'effective_orders_mailer_preview.rb', File.join(mailer_preview_path, 'effective_orders_mailer_preview.rb')
  else
    puts "couldn't find action_mailer.preview_path. Skipping effective_orders_mailer_preview."
  end
end
copy_mailer_templates() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 31
def copy_mailer_templates
  path = 'app/views/effective/orders_mailer/'

  Dir["#{source_paths.first}/../../../#{path}**"].map { |file| file.split('/').last }.each do |name|
    template (('../' * 3) + path + name), (path + name)
  end
end
create_migration_file() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 49
def create_migration_file
  migration_template ('../' * 3) + 'db/migrate/101_create_effective_orders.rb', 'db/migrate/create_effective_orders.rb'
end
install_effective_addresses() click to toggle source
# File lib/generators/effective_orders/install_generator.rb, line 18
def install_effective_addresses
  run 'rails generate effective_addresses:install'
end