class PrinterGenerator

Public Class Methods

next_migration_number(dirname) click to toggle source
# File lib/generators/printer/printer_generator.rb, line 9
def self.next_migration_number(dirname)
  if ActiveRecord::Base.timestamped_migrations
    Time.new.utc.strftime("%Y%m%d%H%M%S")
  else
    "%.3d" % (current_migration_number(dirname) + 1)
  end
end
source_root() click to toggle source
# File lib/generators/printer/printer_generator.rb, line 5
def self.source_root
  @source_root ||= File.join(File.dirname(__FILE__), 'templates')
end

Public Instance Methods

create_migration_file() click to toggle source
# File lib/generators/printer/printer_generator.rb, line 17
def create_migration_file
  migration_template 'printer.rb', 'db/migrate/create_printers.rb'
  # allow the clock to advance 1sec
  sleep 2
  migration_template 'print_job.rb', 'db/migrate/create_print_jobs.rb'
  # allow the clock to advance 1sec
  sleep 2
  migration_template 'printable.rb', 'db/migrate/create_printables.rb'
  # allow the clock to advance 1sec
  sleep 2
  migration_template 'template.rb', 'db/migrate/create_templates.rb'
end