module Fugit

Constants

DAY_S
VERSION
YEAR_S

Public Class Methods

determine_type(s) click to toggle source
# File lib/fugit/parse.rb, line 36
def determine_type(s)

  case self.parse(s)
  when ::Fugit::Cron then 'cron'
  when ::Fugit::Duration then 'in'
  when ::Time, ::EtOrbi::EoTime then 'at'
  else nil
  end
end
do_parse(s, opts={}) click to toggle source
# File lib/fugit/parse.rb, line 30
def do_parse(s, opts={})

  parse(s, opts) ||
  fail(ArgumentError.new("found no time information in #{s.inspect}"))
end
do_parse_at(s) click to toggle source
# File lib/fugit/parse.rb, line 16
def do_parse_at(s); ::Fugit::At.do_parse(s); end
do_parse_cron(s) click to toggle source
# File lib/fugit/parse.rb, line 13
def do_parse_cron(s); ::Fugit::Cron.do_parse(s); end
do_parse_duration(s) click to toggle source
# File lib/fugit/parse.rb, line 14
def do_parse_duration(s); ::Fugit::Duration.do_parse(s); end
do_parse_in(s) click to toggle source
# File lib/fugit/parse.rb, line 17
def do_parse_in(s); do_parse_duration(s); end
do_parse_nat(s, opts={}) click to toggle source
# File lib/fugit/parse.rb, line 15
def do_parse_nat(s, opts={}); ::Fugit::Nat.do_parse(s, opts); end
isostamp(show_date, show_time, show_usec, time) click to toggle source
# File lib/fugit/misc.rb, line 10
def isostamp(show_date, show_time, show_usec, time)

  t = time || Time.now
  s = StringIO.new

  s << t.strftime('%Y-%m-%d') if show_date
  s << t.strftime('T%H:%M:%S') if show_time
  s << sprintf('.%06d', t.usec) if show_time && show_usec
  s << 'Z' if show_time && time.utc?

  s.string
end
parse(s, opts={}) click to toggle source
# File lib/fugit/parse.rb, line 19
def parse(s, opts={})

  opts[:at] = opts[:in] if opts.has_key?(:in)

  (opts[:cron] != false && parse_cron(s)) ||
  (opts[:duration] != false && parse_duration(s)) ||
  (opts[:nat] != false && parse_nat(s, opts)) ||
  (opts[:at] != false && parse_at(s)) ||
  nil
end
parse_at(s) click to toggle source
# File lib/fugit/parse.rb, line 10
def parse_at(s); ::Fugit::At.parse(s); end
parse_cron(s) click to toggle source
# File lib/fugit/parse.rb, line 7
def parse_cron(s); ::Fugit::Cron.parse(s); end
parse_duration(s) click to toggle source
# File lib/fugit/parse.rb, line 8
def parse_duration(s); ::Fugit::Duration.parse(s); end
parse_in(s) click to toggle source
# File lib/fugit/parse.rb, line 11
def parse_in(s); parse_duration(s); end
parse_nat(s, opts={}) click to toggle source
# File lib/fugit/parse.rb, line 9
def parse_nat(s, opts={}); ::Fugit::Nat.parse(s, opts); end
time_to_plain_s(t=Time.now, z=true) click to toggle source
# File lib/fugit/misc.rb, line 28
def time_to_plain_s(t=Time.now, z=true)

  t.strftime('%Y-%m-%d %H:%M:%S') + (z && t.utc? ? ' Z' : '')
end
time_to_s(t) click to toggle source
# File lib/fugit/misc.rb, line 23
def time_to_s(t)

  isostamp(true, true, false, t)
end
time_to_zone_s(t=Time.now) click to toggle source
# File lib/fugit/misc.rb, line 33
def time_to_zone_s(t=Time.now)

  t.strftime('%Y-%m-%d %H:%M:%S %Z %z')
end