Sha256: f9424bdf5131f67460c45a272161103c8079c9558db5beaf937a7eb90962b7fc
Contents?: true
Size: 711 Bytes
Versions: 1
Compression:
Stored size: 711 Bytes
Contents
# -*- ruby -*- # vim: set nosta noet ts=4 sw=4: # encoding: utf-8 require 'loggability' # A mixin that provides scheduling to an including object. module Schedulability extend Loggability # Package version constant VERSION = '0.4.1' # VCS revision REVISION = %q$Revision: 7fa470aea04e $ # Loggability API -- set up a logger for Schedulability objects log_as :schedulability autoload :Schedule, 'schedulability/schedule' autoload :Parser, 'schedulability/parser' autoload :TimeRefinements, 'schedulability/mixins' autoload :Error, 'schedulability/exceptions' autoload :ParseError, 'schedulability/exceptions' autoload :RangeError, 'schedulability/exceptions' end # module Schedulability
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
schedulability-0.4.1 | lib/schedulability.rb |