您最多选择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