Sha256: df733d86ee443ae01826ca139172baa99dd7bd33bc55b07a250c11a84d506106

Contents?: true

Size: 1.9 KB

Versions: 26

Compression:

Stored size: 1.9 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)
        unless ActiveRecord::Base.timestamped_migrations
          Time.new.utc.strftime("%Y%m%d%H%M%S")
        else
          "%.3d" % (current_migration_number(dirname) + 1)
        end
      end

      def install_effective_addresses
        run 'rails generate effective_addresses:install'
      end

      def copy_initializer
        template ('../' * 3) + 'config/effective_orders.rb', 'config/initializers/effective_orders.rb'
      end

      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

      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
        @products_table_name = ':' + EffectiveOrders.products_table_name.to_s

        migration_template ('../' * 3) + 'db/migrate/01_create_effective_orders.rb.erb', 'db/migrate/create_effective_orders.rb'
      end

    end
  end
end

Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
effective_orders-3.2.3 lib/generators/effective_orders/install_generator.rb
effective_orders-3.2.2 lib/generators/effective_orders/install_generator.rb
effective_orders-3.2.1 lib/generators/effective_orders/install_generator.rb
effective_orders-3.2.0 lib/generators/effective_orders/install_generator.rb
effective_orders-3.1.7 lib/generators/effective_orders/install_generator.rb
effective_orders-3.1.6 lib/generators/effective_orders/install_generator.rb
effective_orders-3.1.4 lib/generators/effective_orders/install_generator.rb
effective_orders-3.1.3 lib/generators/effective_orders/install_generator.rb
effective_orders-3.1.0 lib/generators/effective_orders/install_generator.rb
effective_orders-3.0.4 lib/generators/effective_orders/install_generator.rb
effective_orders-3.0.3 lib/generators/effective_orders/install_generator.rb
effective_orders-3.0.2 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta12 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta11 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta10 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta9 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta8 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta7 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta6 lib/generators/effective_orders/install_generator.rb
effective_orders-4.0.0beta5 lib/generators/effective_orders/install_generator.rb