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