lib/osc-ruby/bundle.rb in osc-ruby-1.1.3 vs lib/osc-ruby/bundle.rb in osc-ruby-1.1.4

- old
+ new

@@ -13,29 +13,31 @@ s << @args.collect do |x| x2 = x.encode; [x2.size].pack('N') + x2 end.join end - def to_a() @args.collect{|x| x.to_a} end + def to_a + @args.collect{|x| x.to_a} + end - private + private def encode_timetag(t) case t - when nil # immediately - t1 = 0 - t2 = 1 - when Numeric - t1, t2 = construct_timetag( t ) - when Time - t1, t2 = construct_timetag( t.to_ntp ) - else - raise ArgumentError, 'invalid time' + when nil # immediately + t1 = 0 + t2 = 1 + when Numeric + t1, t2 = construct_timetag(t) + when Time + t1, t2 = construct_timetag(t.to_ntp) + else + raise(ArgumentError, 'invalid time') end [t1, t2].pack('N2') end - def construct_timetag( time ) + def construct_timetag(time) t1, fr = time.divmod(1) t2 = (fr * (2**32)).to_i [t1, t2] end