Sha256: 16dcea711e3bb63ddc4c12f6cb2f9433ba506527b684cd8cd375d8357f0ec51b

Contents?: true

Size: 592 Bytes

Versions: 30

Compression:

Stored size: 592 Bytes

Contents

require 'active_support/deprecation'

module ActiveSupport
  module JSON
    # Deprecated: A string that returns itself as its JSON-encoded form.
    class Variable < String
      def initialize(*args)
        message = 'ActiveSupport::JSON::Variable is deprecated and will be removed in Rails 4.1. ' \
                  'For your own custom JSON literals, define #as_json and #encode_json yourself.'
        ActiveSupport::Deprecation.warn message
        super
      end

      def as_json(options = nil) self end #:nodoc:
      def encode_json(encoder) self end #:nodoc:
    end
  end
end

Version data entries

30 entries across 30 versions & 2 rubygems

Version Path
activesupport-4.0.13 lib/active_support/json/variable.rb
activesupport-4.0.13.rc1 lib/active_support/json/variable.rb
activesupport-4.0.11.1 lib/active_support/json/variable.rb
activesupport-4.0.12 lib/active_support/json/variable.rb
activesupport-4.0.11 lib/active_support/json/variable.rb
activesupport-4.0.10 lib/active_support/json/variable.rb
activesupport-4.0.10.rc2 lib/active_support/json/variable.rb
activesupport-4.0.10.rc1 lib/active_support/json/variable.rb
activesupport-4.0.9 lib/active_support/json/variable.rb
activesupport-4.0.8 lib/active_support/json/variable.rb
activesupport-4.0.7 lib/active_support/json/variable.rb
activesupport-4.0.6 lib/active_support/json/variable.rb
activesupport-4.0.6.rc3 lib/active_support/json/variable.rb
activesupport-4.0.6.rc2 lib/active_support/json/variable.rb
activesupport-4.0.6.rc1 lib/active_support/json/variable.rb
activesupport-4.0.5 lib/active_support/json/variable.rb
activesupport-4.0.4 lib/active_support/json/variable.rb
activesupport-4.0.4.rc1 lib/active_support/json/variable.rb
activesupport-4.0.3 lib/active_support/json/variable.rb
activesupport-4.0.2 lib/active_support/json/variable.rb