Sha256: 83f159bb527832311af3e9cd2c97e79ef717f67c56db4184fdac94ea7907bbf4

Contents?: true

Size: 562 Bytes

Versions: 1

Compression:

Stored size: 562 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.1.0'

	# VCS revision
	REVISION = %q$Revision: 39de155fb60f $


	# Loggability API -- set up a logger for Schedulability objects
	log_as :schedulability


	autoload :Schedule, 'schedulability/schedule'
	autoload :Parser, 'schedulability/parser'
	autoload :TimeRefinements, 'schedulability/mixins'

end # module Schedulability

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
schedulability-0.1.0 lib/schedulability.rb