Sha256: e84bcfac207a2a0a6f8ae3ceeb67c032795bf0de1fe3c38c20ebd001ef30c710

Contents?: true

Size: 864 Bytes

Versions: 8

Compression:

Stored size: 864 Bytes

Contents

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

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

      def create_migration_file
        migration_template ('../' * 3) + 'db/migrate/101_create_effective_postmark.rb', 'db/migrate/create_effective_postmark.rb'
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
effective_postmark-0.4.0 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.3.1 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.3.0 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.2.0 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.1.3 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.1.2 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.1.1 lib/generators/effective_postmark/install_generator.rb
effective_postmark-0.1.0 lib/generators/effective_postmark/install_generator.rb