Class: ActiveSupport::JSON::Encoding::JSONGemEncoder
- Defined in:
- lib/active_support/json/encoding.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
-
#encode(value) ⇒ Object
Encode the given object into a JSON string.
-
#initialize(options = nil) ⇒ JSONGemEncoder
constructor
A new instance of JSONGemEncoder.
Constructor Details
#initialize(options = nil) ⇒ JSONGemEncoder
Returns a new instance of JSONGemEncoder.
28 29 30 |
# File 'lib/active_support/json/encoding.rb', line 28 def initialize( = nil) @options = || {} end |
Instance Attribute Details
#options ⇒ Object (readonly)
Returns the value of attribute options.
26 27 28 |
# File 'lib/active_support/json/encoding.rb', line 26 def @options end |
Instance Method Details
#encode(value) ⇒ Object
Encode the given object into a JSON string
33 34 35 |
# File 'lib/active_support/json/encoding.rb', line 33 def encode(value) stringify jsonify value.as_json(.dup) end |