提交 8368e160 编写于 作者: J Jamis Buck

Make sure Duration uses duck-typing instead of explicit classes, so apps can...

Make sure Duration uses duck-typing instead of explicit classes, so apps can pass proxy objects around and have it all "just work"


git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5948 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
上级 d1917cfe
......@@ -65,16 +65,17 @@ def inspect #:nodoc:
def sum(sign, time = ::Time.now) #:nodoc:
parts.inject(time) do |t,(type,number)|
case t
when ::Time
if t.respond_to?(:sec) # quacks like a Time
if type == :seconds
t + (sign * number)
else
t.advance(type => sign * number)
end
when ::Date
elsif t.respond_to?(:day) # quacks like a Date
raise ArgumentError, "Adding seconds to a Date does not make sense" if type == :seconds
t.advance(type => sign * number)
else
raise ArgumentError, "expected a time or date, got #{time.inspect}"
end
end
end
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册