aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/variable.rb
blob: 0af98f09682504cfee898bb377bc0ca420f2244b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
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