Class: UuidItGenerator
- Inherits:
-
Rails::Generators::Base
- Object
- Rails::Generators::Base
- UuidItGenerator
- Includes:
- Rails::Generators::Migration
- Defined in:
- lib/generators/uuid_it_generator.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.next_migration_number(dirname) ⇒ Object
13 14 15 16 17 18 19 |
# File 'lib/generators/uuid_it_generator.rb', line 13 def self.next_migration_number dirname if ActiveRecord::Base. Time.now.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end |
Instance Method Details
#copy_files(*args) ⇒ Object
9 10 11 |
# File 'lib/generators/uuid_it_generator.rb', line 9 def copy_files(*args) migration_template "create_uuids.rb", "db/migrate/create_uuids.rb" end |