Sha256: 31c19755b1cbc691dbad2fea092260ecf1a76dc29959d90cf7ea2417659aacfb
Contents?: true
Size: 606 Bytes
Versions: 62
Compression:
Stored size: 606 Bytes
Contents
# sbJson 1.0 writer hours # History: # Stan Smith 2017-05-26 original script module ADIWG module Mdtranslator module Writers module SbJson module Hours def self.build(aHours) hours = '' aHours.each do |hour| hours += hour + '; ' end # clean off last semicolon if hours.length > 2 hours = hours[0...-2] end hours end end end end end end
Version data entries
62 entries across 62 versions & 1 rubygems