This method is deprecated or moved on the latest stable version. The last existing version (v2_2_9) is shown here.
month=(value)
Set value as the new date/time component.
Raises an ArgumentError if the given value isn’t between 1 and 12.
# File lib/xmlrpc/datetime.rb, line 34 def month= (value) raise ArgumentError, "date/time out of range" unless (1..12).include? value @month = value end