Sha256: f242ab47db1ac50dc355697e1da52b1d6bd7239f8e7583ff0fdb04d595e7fa44

Contents?: true

Size: 1.24 KB

Versions: 17

Compression:

Stored size: 1.24 KB

Contents

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

      desc 'Creates an EffectivePolls 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 ('../' * 3) + 'config/effective_polls.rb', 'config/initializers/effective_polls.rb'
      end

      def create_migration_file
        migration_template ('../' * 3) + 'db/migrate/101_create_effective_polls.rb', 'db/migrate/create_effective_polls.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_polls_mailer_preview.rb', File.join(mailer_preview_path, 'effective_polls_mailer_preview.rb')
        else
          puts "couldn't find action_mailer.preview_path. Skipping effective_polls_mailer_preview."
        end
      end

    end
  end
end

Version data entries

17 entries across 17 versions & 1 rubygems

Version Path
effective_polls-0.7.3 lib/generators/effective_polls/install_generator.rb
effective_polls-0.7.2 lib/generators/effective_polls/install_generator.rb
effective_polls-0.7.1 lib/generators/effective_polls/install_generator.rb
effective_polls-0.7.0 lib/generators/effective_polls/install_generator.rb
effective_polls-0.6.2 lib/generators/effective_polls/install_generator.rb
effective_polls-0.6.1 lib/generators/effective_polls/install_generator.rb
effective_polls-0.6.0 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.6 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.5 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.4 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.3 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.2 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.1 lib/generators/effective_polls/install_generator.rb
effective_polls-0.5.0 lib/generators/effective_polls/install_generator.rb
effective_polls-0.4.1 lib/generators/effective_polls/install_generator.rb
effective_polls-0.4.0 lib/generators/effective_polls/install_generator.rb
effective_polls-0.3.0 lib/generators/effective_polls/install_generator.rb