Sha256: ce93aa3af421218ddac626c75b2976242599afdc6dd046d65f4d46beed74b3e5
Contents?: true
Size: 817 Bytes
Versions: 21
Compression:
Stored size: 817 Bytes
Contents
require 'rails/generators/base' require 'rails/generators/migration' module HasVcards 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/create_has_vcards.rb' end end end
Version data entries
21 entries across 21 versions & 2 rubygems
Version | Path |
---|---|
has_vcards-0.5.3 | lib/generators/has_vcards/migration_generator.rb |