Class: EffectiveLogging::Generators::InstallGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



10
11
12
13
14
15
16
# File 'lib/generators/effective_logging/install_generator.rb', line 10

def self.next_migration_number(dirname)
  if not ActiveRecord::Base.timestamped_migrations
    Time.new.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end

Instance Method Details

#copy_initializerObject



18
19
20
# File 'lib/generators/effective_logging/install_generator.rb', line 18

def copy_initializer
  template ('../' * 3) + 'config/effective_logging.rb', 'config/initializers/effective_logging.rb'
end

#create_migration_fileObject



22
23
24
25
26
# File 'lib/generators/effective_logging/install_generator.rb', line 22

def create_migration_file
  @logs_table_name = ':' + EffectiveLogging.logs_table_name.to_s

  migration_template ('../' * 3) + 'db/migrate/01_create_effective_logging.rb.erb', 'db/migrate/create_effective_logging.rb'
end