Redmine/vendor/plugins/open_id_authentication/generators/open_id_authentication_tables/open_id_authentication_tabl...

12 lines
249 B
Ruby

class OpenIdAuthenticationTablesGenerator < Rails::Generator::NamedBase
def initialize(runtime_args, runtime_options = {})
super
end
def manifest
record do |m|
m.migration_template 'migration.rb', 'db/migrate'
end
end
end