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