module ActiveAdminRole::Generators::Helper::ClassMethods
Public Instance Methods
next_migration_number(dirname)
click to toggle source
Define the next_migration_number
method (necessary for the migration_template method to work)
# File lib/generators/active_admin_role/helper.rb, line 53 def next_migration_number(dirname) if ActiveRecord::Base.timestamped_migrations sleep 1 # make sure each time we get a different timestamp Time.new.utc.strftime("%Y%m%d%H%M%S") else "%.3d" % (current_migration_number(dirname) + 1) end end