Sha256: 322190bcd69822bee6a7ff992108f6170ec0dfe669deff0a808947fd2a16e8c0

Contents?: true

Size: 494 Bytes

Versions: 8

Compression:

Stored size: 494 Bytes

Contents

# Filters added to this controller apply to all controllers in the application.
# Likewise, all the methods added will be available for all controllers.

class ApplicationController < ActionController::Base
  helper :all # include all helpers, all the time
  protect_from_forgery # See ActionController::RequestForgeryProtection for details

  # Scrub sensitive parameters from your log
  # filter_parameter_logging :password
  
  def pulse
    render :text => '1'
  end
  
  def test
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
smart_asset-0.6.0 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.11 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.10 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.9 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.8 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.7 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.6 spec/fixtures/rails2/application_controller.rb
smart_asset-0.5.5 spec/fixtures/rails2/application_controller.rb