Sha256: bd87f334774320eeec7258029b4f0d930fab4547682924634a1c8a63fc479844

Contents?: true

Size: 566 Bytes

Versions: 3

Compression:

Stored size: 566 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 osheet
    respond_to do |format|
      format.html { render 500 }
      format.xls {
        puts "HERE"
      }
    end
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
osheet-0.7.0 test/rails/two/app/controllers/application_controller.rb
osheet-0.6.0 test/rails/two/app/controllers/application_controller.rb
osheet-0.5.0 test/rails/two/app/controllers/application_controller.rb