Methods
A
T
Instance Public methods
as_json(options={})
# File actionpack/test/controller/render_json_test.rb, line 7
def as_json(options={})
  hash = { :a => :b, :c => :d, :e => :f }
  hash.except!(*options[:except]) if options[:except]
  hash
end
to_json(options = {})
# File actionpack/test/controller/render_json_test.rb, line 13
def to_json(options = {})
  super :except => [:c, :e]
end