Source: show
# File rhino/rhino/app/controllers/rhino/simple_stream_controller.rb 5 def action_missing(action) 6 authorize klass, "#{action}?".to_sym 7 8 info = klass.send(action) 9 send_file(info[:file], info.except(:file)) if info.key?(:file) 10 end