Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

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