Sha256: 7d0d902fede2a278e159a1144b1816b889c47495566605b34ecccd18a7eea001
Contents?: true
Size: 901 Bytes
Versions: 5
Compression:
Stored size: 901 Bytes
Contents
require 'rails/generators' require 'rails/generators/migration' module Parole 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/add_parole.rb' end def create_model_file template "model.rb", "app/models/comment.rb" end end end end
Version data entries
5 entries across 5 versions & 1 rubygems