method
method_missing
method_missing(name, *args)
public
Hide source
# File activesupport/lib/active_support/ordered_options.rb, line 32 def method_missing(name, *args) if name.to_s =~ /(.*)=$/ self[$1] = args.first else self[name] end end