Sha256: 9de7263552dabd4e896a9ac49c2e488a0483763bf11a636c745aa38ec666c671
Contents?: true
Size: 591 Bytes
Versions: 8
Compression:
Stored size: 591 Bytes
Contents
require 'rails/generators' require 'rails/generators/migration' class ShortenerGenerator < Rails::Generators::Base include Rails::Generators::Migration def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end def self.next_migration_number(dirname) if ActiveRecord::Base.timestamped_migrations Time.new.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_shortened_urls_table.rb' end end
Version data entries
8 entries across 8 versions & 1 rubygems