class GoogleSafeBrowsing::InstallGenerator
Public Class Methods
next_migration_number(path)
click to toggle source
# File lib/generators/install_generator.rb, line 13 def self.next_migration_number(path) if ActiveRecord::Base.timestamped_migrations Time.now.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/install_generator.rb, line 9 def self.source_root @source_root ||= File.join(File.dirname(__FILE__), 'templates') end
Public Instance Methods
create_migration_files()
click to toggle source
# File lib/generators/install_generator.rb, line 21 def create_migration_files migration_template 'create_google_safe_browsing_tables.rb', 'db/migrate/create_google_safe_browsing_tables.rb' end