module Legion

Constants

VERSION

Attributes

service[R]

Public Class Methods

reload() click to toggle source
# File lib/legion.rb, line 21
def self.reload
  @service.reload
end
shutdown() click to toggle source
# File lib/legion.rb, line 17
def self.shutdown
  @service.shutdown
end
start() click to toggle source
# File lib/legion.rb, line 12
def self.start
  @service = Legion::Service.new
  Legion::Logging.info("Started Legion v#{Legion::VERSION}")
end