Sha256: e0271b5755d1565c5994cf12df2a3d426e186e3aed7447489da16baa4e856498
Contents?: true
Size: 611 Bytes
Versions: 7
Compression:
Stored size: 611 Bytes
Contents
module Borutus class BaseGenerator < 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. # See http://apidock.com/rails/ActiveRecord/Generators/Base/next_migration_number/class 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 end end
Version data entries
7 entries across 7 versions & 1 rubygems