Files
rails/activesupport/lib/active_support/json/variable.rb
2007-09-30 20:57:50 +00:00

11 lines
183 B
Ruby

module ActiveSupport
module JSON
# A string that returns itself as its JSON-encoded form.
class Variable < String
def to_json
self
end
end
end
end