Class: CanHaz::Generators::InstallGenerator

Inherits:
Rails::Generators::Base
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/can_haz/install/install_generator.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



12
13
14
# File 'lib/generators/can_haz/install/install_generator.rb', line 12

def self.next_migration_number(dirname)
  Time.now.strftime("%Y%m%d%H%M%S")
end

.source_rootObject



8
9
10
# File 'lib/generators/can_haz/install/install_generator.rb', line 8

def self.source_root
  @_can_haz_source_root ||= File.expand_path("../templates", __FILE__)
end

Instance Method Details

#create_migrationsObject



16
17
18
19
20
21
22
# File 'lib/generators/can_haz/install/install_generator.rb', line 16

def create_migrations
  Dir["#{self.class.source_root}/migrations/*.rb"].sort.each do |filepath|
    name = File.basename(filepath)
    migration_template "migrations/#{name}", "db/migrate/#{name.gsub(/^\d+_/,'')}"
    sleep 1
  end
end