Sha256: d97c2984a6139464bd5c34b1028855bda571d2a75f4ded1d3c6c77f2f505731c

Contents?: true

Size: 1.36 KB

Versions: 55

Compression:

Stored size: 1.36 KB

Contents

module EffectiveOrders
  module Generators
    class InstallGenerator < Rails::Generators::Base
      include Rails::Generators::Migration

      desc "Creates an EffectiveOrders initializer in your application."

      source_root File.expand_path("../../templates", __FILE__)

      def self.next_migration_number(dirname)
        if not ActiveRecord::Base.timestamped_migrations
          Time.new.utc.strftime("%Y%m%d%H%M%S")
        else
          "%.3d" % (current_migration_number(dirname) + 1)
        end
      end

      def copy_initializer
        template "effective_orders.rb", "config/initializers/effective_orders.rb"
      end

      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

      def show_readme
        readme "README" if behavior == :invoke
      end
    end
  end
end

Version data entries

55 entries across 55 versions & 1 rubygems

Version Path
effective_orders-1.4.2 lib/generators/effective_orders/install_generator.rb
effective_orders-1.4.1 lib/generators/effective_orders/install_generator.rb
effective_orders-1.4.0 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.13 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.12 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.11 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.10 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.9 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.8 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.7 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.6 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.5 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.4 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.3 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.2 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.1 lib/generators/effective_orders/install_generator.rb
effective_orders-1.3.0 lib/generators/effective_orders/install_generator.rb
effective_orders-1.2.13 lib/generators/effective_orders/install_generator.rb
effective_orders-1.2.12 lib/generators/effective_orders/install_generator.rb
effective_orders-1.2.11 lib/generators/effective_orders/install_generator.rb