class SoapboxMigrationGenerator
Public Class Methods
next_migration_number(dirname)
click to toggle source
# File lib/generators/soapbox_migration/soapbox_migration_generator.rb, line 11 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/soapbox_migration/soapbox_migration_generator.rb, line 7 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/soapbox_migration/soapbox_migration_generator.rb, line 19 def create_migration_file migration_template 'migration.rb', 'db/migrate/create_soapbox_tables.rb' puts "make sure to run - rake db:migrate" puts "you'll also want to add a super admin so you can login to /admin" puts "rails c" puts 'User.create(:email => "your@email.address", :password => "xxxxxx", :super_admin => true)' end