mirror of
https://github.com/github/rails.git
synced 2026-04-26 03:00:59 -04:00
12 lines
212 B
Ruby
12 lines
212 B
Ruby
module ActiveSupport
|
|
module JSON
|
|
# A string that returns itself as its JSON-encoded form.
|
|
class Variable < String
|
|
private
|
|
def rails_to_json(*)
|
|
self
|
|
end
|
|
end
|
|
end
|
|
end
|