Sha256: e28e1465b411d84530f61d336364d19c751b16070231d0ca614c45f684d99054

Contents?: true

Size: 878 Bytes

Versions: 5

Compression:

Stored size: 878 Bytes

Contents

require 'rails/generators'
require 'rails/generators/migration'
require 'active_record'
require 'rails/generators/active_record'

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

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

      # Implement the required interface for Rails::Generators::Migration.
      def self.next_migration_number(dirname) #:nodoc:
        next_migration_number = current_migration_number(dirname) + 1
        if ActiveRecord::Base.timestamped_migrations
          [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % next_migration_number].max
        else
          "%.3d" % next_migration_number
        end
      end

      def copy_migration
        migration_template 'install.rb', 'db/migrate/install_acts_as_audited.rb'
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
acts_as_cleo-1.2.0 lib/generators/acts_as_cleo/install_generator.rb
acts_as_cleo-1.1.0 lib/generators/acts_as_cleo/install_generator.rb
acts_as_cleo-1.0.0 lib/generators/acts_as_cleo/install_generator.rb
acts_as_cleo-0.0.4 lib/generators/acts_as_cleo/install_generator.rb
acts_as_cleo-0.0.3 lib/generators/acts_as_cleo/install_generator.rb