require 'forwardable' require File.expand_path('../schedulers/eventmachine', __FILE__) require File.expand_path('../storage/memory', __FILE__) module Drone ## # This module contains all the metrics you can use to collect data # module Metrics; end ## # This module contains all the interfaces to the outside world, # they are the only way to communicate with external applications # module Interface; end ## # This module contains the class used for scheduling timers # module Schedulers; end ## # This module contains the class used for storage, # they determine where the metric's data are stored # module Storage; end class <