diff options
| author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-04 02:50:32 +0100 | 
|---|---|---|
| committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-01-04 02:50:32 +0100 | 
| commit | b3e28a42d3982c16f46ea9ec1a02d2f526e1510f (patch) | |
| tree | 5bd9f66b8acfb40cc8eee5c60e8ea3658635fa77 /lib | |
| parent | bbfd38654cf67645eb475970ed315c829aa77e09 (diff) | |
| download | zorglub-b3e28a42d3982c16f46ea9ec1a02d2f526e1510f.zip zorglub-b3e28a42d3982c16f46ea9ec1a02d2f526e1510f.tar.gz  | |
disable autoload for major classes
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/zorglub.rb | 7 | 
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/zorglub.rb b/lib/zorglub.rb index 62aa10c..100b2b1 100644 --- a/lib/zorglub.rb +++ b/lib/zorglub.rb @@ -1,14 +1,13 @@  #! /usr/bin/env ruby  # -*- coding: UTF-8 -*- +require 'zorglub/config' +require 'zorglub/node' +require 'zorglub/app'  #  module Zorglub      #      VERSION = '0.0.1'      # -    autoload :App,      './lib/zorglub/app.rb' -    autoload :Config,   './lib/zorglub/config.rb' -    autoload :Helpers,  './lib/zorglub/helpers.rb' -    autoload :Node,     './lib/zorglub/node.rb'      autoload :Session,  './lib/zorglub/session.rb'      #  end  | 
