Class: RateableGenerator

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

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.next_migration_number(dirname) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/generators/rateable/rateable_generator.rb', line 16

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

#copy_filesObject



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

def copy_files
   copy_file "star_unfilled.png", "public/images/rateable/star_unfilled.png"
   copy_file "star_filled.png", "public/images/rateable/star_filled.png"
   copy_file "rateable.js", "public/javascripts/rateable.js"
   copy_file "rateable.css", "public/stylesheets/rateable.css"
   migration_template "migration.rb", "db/migrate/rateable_migration"
end