Class: EffectiveOrders::Generators::InstallGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- EffectiveOrders::Generators::InstallGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/effective_orders/install_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(dirname) ⇒ Object
10 11 12 13 14 15 16 |
# File 'lib/generators/effective_orders/install_generator.rb', line 10 def self.next_migration_number(dirname) if not ActiveRecord::Base. Time.new.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
Instance Method Details
#copy_initializer ⇒ Object
18 19 20 |
# File 'lib/generators/effective_orders/install_generator.rb', line 18 def copy_initializer template "effective_orders.rb", "config/initializers/effective_orders.rb" end |
#create_migration_file ⇒ Object
22 23 24 25 26 27 28 29 30 31 |
# File 'lib/generators/effective_orders/install_generator.rb', line 22 def create_migration_file @orders_table_name = ':' + EffectiveOrders.orders_table_name.to_s @order_items_table_name = ':' + EffectiveOrders.order_items_table_name.to_s @carts_table_name = ':' + EffectiveOrders.carts_table_name.to_s @cart_items_table_name = ':' + EffectiveOrders.cart_items_table_name.to_s @customers_table_name = ':' + EffectiveOrders.customers_table_name.to_s @subscriptions_table_name = ':' + EffectiveOrders.subscriptions_table_name.to_s migration_template '../../../db/migrate/01_create_effective_orders.rb.erb', 'db/migrate/create_effective_orders.rb' end |
#show_readme ⇒ Object
33 34 35 |
# File 'lib/generators/effective_orders/install_generator.rb', line 33 def show_readme readme "README" if behavior == :invoke end |