astrotrain 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/astrotrain.gemspec +1 -1
- data/lib/astrotrain.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.4
|
data/astrotrain.gemspec
CHANGED
data/lib/astrotrain.rb
CHANGED
|
@@ -9,8 +9,8 @@ module Astrotrain
|
|
|
9
9
|
def self.load(root = Dir.pwd)
|
|
10
10
|
self.root = File.expand_path(root)
|
|
11
11
|
self.lib_root = File.expand_path(File.dirname(__FILE__))
|
|
12
|
-
yield if block_given?
|
|
13
12
|
load_dependencies
|
|
13
|
+
yield if block_given?
|
|
14
14
|
%w(tmail message mapping logged_mail mapping/transport mapping/http_post mapping/jabber).each do |lib|
|
|
15
15
|
require "astrotrain/#{lib}"
|
|
16
16
|
end
|