mirror of
https://github.com/github/rails.git
synced 2026-01-15 01:28:17 -05:00
11 lines
196 B
Ruby
11 lines
196 B
Ruby
module ActiveSupport
|
|
module JSON
|
|
# A string that returns itself as its JSON-encoded form.
|
|
class Variable < String
|
|
def to_json(options=nil)
|
|
self
|
|
end
|
|
end
|
|
end
|
|
end
|