class SoundcloudAuthGenerator < Rails::Generator::Base def manifest record do |m| m.class_collisions 'User' m.migration_template 'migration.rb', 'db/migrate', :migration_file_name => 'soundcloud_auth_migration' m.template 'user.rb', File.join('app','models','user.rb') m.template 'soundcloud_auth.yml', File.join('config','soundcloud_auth.yml') end end end