app-mgr 0.1.9 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/app-mgr.rb +1 -1
- metadata +1 -1
data/lib/app-mgr.rb
CHANGED
@@ -21,7 +21,7 @@ class AppMgr
|
|
21
21
|
if app then
|
22
22
|
options = {public: app[:public]}
|
23
23
|
options[:config] = app[:config] unless app[:config].empty?
|
24
|
-
app[:running] = app[:object].new(options)
|
24
|
+
app[:running] = app[:object].new(options, self)
|
25
25
|
|
26
26
|
return "'%s' running ..." % app_name
|
27
27
|
else
|