Sha256: 95e5bccd8714e589f574f35b8f53b18c311af4223656973ef79a06d25d24d563
Contents?: true
Size: 1.32 KB
Versions: 2
Compression:
Stored size: 1.32 KB
Contents
module Responders module Generators class InstallGenerator < Rails::Generators::Base source_root File.expand_path("..", __FILE__) desc "Creates an initializer with default responder configuration and copy locale file" def create_responder_file create_file "lib/application_responder.rb", <<-RUBY class ApplicationResponder < ActionController::Responder include Responders::FlashResponder include Responders::HttpCacheResponder # Redirects resources to the collection path (index action) instead # of the resource path (show action) for POST/PUT/DELETE requests. # include Responders::CollectionResponder # Allows to use a callable object as the redirect location with respond_with, # eg a route that requires persisted objects when the validation may fail. # include Responders::LocationResponder end RUBY end def update_application_controller prepend_file "app/controllers/application_controller.rb", %{require "application_responder"\n\n} inject_into_class "app/controllers/application_controller.rb", "ApplicationController", <<-RUBY self.responder = ApplicationResponder respond_to :html RUBY end def copy_locale copy_file "../../responders/locales/en.yml", "config/locales/responders.en.yml" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
responders-1.1.2 | lib/generators/responders/install_generator.rb |
responders-1.1.1 | lib/generators/responders/install_generator.rb |