Sha256: 82f923c0fc5817bf371cf8233d9416415b6c7db010d4829d1bfbcca2a5ccb0a9

Contents?: true

Size: 826 Bytes

Versions: 14

Compression:

Stored size: 826 Bytes

Contents

require 'rails/generators/base'
require 'rails/generators/migration'
  
module HasAccounts
  class MigrationGenerator < Rails::Generators::Base
    include Rails::Generators::Migration

    def self.source_root
      @source_root ||= File.join(File.dirname(__FILE__), 'templates')
    end

    # Implement the required interface for Rails::Generators::Migration.
    # taken from http://github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb
    def self.next_migration_number(dirname)
      if ActiveRecord::Base.timestamped_migrations
        Time.now.utc.strftime("%Y%m%d%H%M%S")
      else
        "%.3d" % (current_migration_number(dirname) + 1)
      end
    end

    def create_migration_file
      migration_template 'migration.rb', 'db/migrate/setup_has_accounts_engine.rb'
    end
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
has_accounts-0.13.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.12.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.11.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.10.1 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.10.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.9.2 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.9.1 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.9.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.8.3 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.8.2 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.8.1 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.8.0 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.7.1 lib/generators/has_accounts/migration_generator.rb
has_accounts-0.7.0 lib/generators/has_accounts/migration_generator.rb