Class: NpoAssetsGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/npo_assets/npo_assets_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



8
9
10
11
12
13
14
# File 'lib/generators/npo_assets/npo_assets_generator.rb', line 8

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

Instance Method Details

#generate_npo_assetsObject



16
17
18
19
# File 'lib/generators/npo_assets/npo_assets_generator.rb', line 16

def generate_npo_assets
  migration_template('migration.rb', 'db/migrate/create_assets.rb')
  copy_file('initializer.rb', 'config/initializers/npo_assets.rb')
end