magicmonkey 3.0.1 → 3.0.2
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.
- checksums.yaml +4 -4
- data/lib/magicmonkey/magicmonkey.rb +2 -1
- data/lib/magicmonkey/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d89bb291b9cb1e79e11bd5ef357eeb541ce34aae
|
|
4
|
+
data.tar.gz: 2b981a9d146ad23facaf59641ce19731de130831
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8669d26011937ab2495a380532d671676526d07cb42caceca50ba8ca03c199d70b1f93ff7210ba0d04c7074c4b75f8598104c26568c752384a4e6cbf976608cf
|
|
7
|
+
data.tar.gz: fbb44c291b790164dd9660cb23e1568475cddcdd0fca6909d82046c337ae878e17253b16a6344d5ad22741e65069e4e5c72224da7a416d66e842c7d2aa7d98ca
|
|
@@ -53,7 +53,7 @@ module Magicmonkey
|
|
|
53
53
|
|
|
54
54
|
app_conf = Conf[app.to_sym]
|
|
55
55
|
unless app_conf
|
|
56
|
-
app_conf = @o.select{|k,v| [:
|
|
56
|
+
app_conf = @o.select{|k,v| ![:editor].include?(k)}
|
|
57
57
|
app_conf[:app_path].gsub!('$APP', app)
|
|
58
58
|
app_conf[:port] = Conf.next_port
|
|
59
59
|
end
|
|
@@ -115,6 +115,7 @@ module Magicmonkey
|
|
|
115
115
|
################
|
|
116
116
|
def self.show(args)
|
|
117
117
|
applications = help2('show', 'Shows the configurations of selected applications', args) do |opts|
|
|
118
|
+
@o[:enabled] = false
|
|
118
119
|
opts.on('-e', '--enabled', 'Show enabled applications.') do |s|
|
|
119
120
|
@o[:enabled] = s
|
|
120
121
|
end
|
data/lib/magicmonkey/version.rb
CHANGED