Sha256: d44064dd45ec9c0cbafc0c004a9fc13fd89c0fcab96c260725578f29dddcae22

Contents?: true

Size: 819 Bytes

Versions: 7

Compression:

Stored size: 819 Bytes

Contents

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

module Emotions
  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.
      # 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/emotions_migration.rb'
      end
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
emotions-0.1.6 lib/generators/emotions/install_generator.rb
emotions-0.1.5 lib/generators/emotions/install_generator.rb
emotions-0.1.4 lib/generators/emotions/install_generator.rb
emotions-0.1.3 lib/generators/emotions/install_generator.rb
emotions-0.1.2 lib/generators/emotions/install_generator.rb
emotions-0.1.1 lib/generators/emotions/install_generator.rb
emotions-0.1 lib/generators/emotions/install_generator.rb