Class: PaperTrailGenerator

Inherits:
Rails::Generators::NamedBase
  • Object
show all
Includes:
Rails::Generators::Migration
Defined in:
lib/generators/paper_trail/paper_trail_generator.rb

Class Method Summary (collapse)

Instance Method Summary (collapse)

Class Method Details

+ (Object) next_migration_number(dirname)

Implement the required interface for Rails::Generators::Migration. taken from github.com/rails/rails/blob/master/activerecord/lib/generators/active_record.rb



13
14
15
16
17
18
19
# File 'lib/generators/paper_trail/paper_trail_generator.rb', line 13

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

- (Object) create_migration_file



21
22
23
# File 'lib/generators/paper_trail/paper_trail_generator.rb', line 21

def create_migration_file
  migration_template 'create_versions.rb', 'db/migrate/create_versions.rb'
end