Methods
A
D
Instance Public methods
as_json(options = nil)
# File activesupport/lib/active_support/json/encoding.rb, line 181
def as_json(options = nil) to_s end
duplicable?()

Symbols are not duplicable:

:my_symbol.duplicable? # => false
:my_symbol.dup         # => TypeError: can't dup Symbol
# File activesupport/lib/active_support/core_ext/object/duplicable.rb, line 68
def duplicable?
  false
end