aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/variable.rb
blob: 325ac9b7a6e1f4790f904087828d081d945b6ec4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
module ActiveSupport
  module JSON
    # A string that returns itself as as its JSON-encoded form.
    class Variable < String
      def to_json
        self
      end
    end
  end
end