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.
min=(value)
public
Set value as the new date/time component.
Raises an ArgumentError if the given
value isn’t between 0 and 59.
# File lib/xmlrpc/datetime.rb, line 58
def min= (value)
raise ArgumentError, "date/time out of range" unless (0..59).include? value
@min = value
end