You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

open_id_authentication_tables_generator.rb 249B

1234567891011
  1. class OpenIdAuthenticationTablesGenerator < Rails::Generator::NamedBase
  2. def initialize(runtime_args, runtime_options = {})
  3. super
  4. end
  5. def manifest
  6. record do |m|
  7. m.migration_template 'migration.rb', 'db/migrate'
  8. end
  9. end
  10. end