everything related to duct tape audio suite (dtas)
 help / color / mirror / code / Atom feed
* [PATCH] parse_time: pass through numeric types
@ 2015-07-05  3:10 Eric Wong
  0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2015-07-05  3:10 UTC (permalink / raw)
  To: dtas-all

This makes it easier to use in a user-friendly scripting interface
we have coming up.
---
 lib/dtas/parse_time.rb | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/dtas/parse_time.rb b/lib/dtas/parse_time.rb
index 7dd41c6..473f412 100644
--- a/lib/dtas/parse_time.rb
+++ b/lib/dtas/parse_time.rb
@@ -3,9 +3,11 @@
 require_relative '../dtas'
 
 module DTAS::ParseTime
-  # convert a string time to seconds, returning a Flot or Integer
+  # convert a string time to seconds, returning a Floot or Integer
   def parse_time(time)
     case time
+    when Numeric
+      time
     when /\A\d+\z/
       time.to_i
     when /\A[\d\.]+\z/
-- 
2.3.1.168.g3dc290c



^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-07-05  3:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-05  3:10 [PATCH] parse_time: pass through numeric types Eric Wong

Code repositories for project(s) associated with this public inbox

	https://80x24.org/dtas.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).