lita-capistrano 0.2.0 → 0.2.1
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/lita/handlers/capistrano.rb +4 -4
- data/lita-capistrano.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f3acafb33f5412566298f898c2c58fc6c01b4997
|
4
|
+
data.tar.gz: 632e43291a01bd6c2e6ae5e5a416dd30ac9cee5d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2b0afade09bab61e877462112c20d9567b434c75164bb6975ba113ca7c19fbfe4eb20a3de26280447b5c44726292d70216dd516b6557a43a42f05b9730b64be
|
7
|
+
data.tar.gz: c7685c92756237a16511bc21f38f4fde2e1c7d9a19d11085cc7161c8d690cd48aa440898f451015a459f0d0cdfca7b405174737cbea4c92a3756f27ec5840e1b
|
@@ -55,10 +55,10 @@ module Lita
|
|
55
55
|
return response.reply("Deploy da app #{app} #{area} permitido somente no canal ##{allowed_channel}")
|
56
56
|
end
|
57
57
|
|
58
|
-
unless area_exists?(area)
|
58
|
+
unless area_exists?(app, area)
|
59
59
|
return response.reply("A área informada é inválida.")
|
60
60
|
end
|
61
|
-
unless env_exists?(area, env)
|
61
|
+
unless env_exists?(app, area, env)
|
62
62
|
return response.reply("O ambiente informado é inválido.")
|
63
63
|
end
|
64
64
|
|
@@ -68,11 +68,11 @@ module Lita
|
|
68
68
|
end
|
69
69
|
|
70
70
|
def area_exists?(area)
|
71
|
-
config.deploy_tree[
|
71
|
+
config.deploy_tree[app.to_sym].include?(area.to_sym)
|
72
72
|
end
|
73
73
|
|
74
74
|
def env_exists?(area, env)
|
75
|
-
config.deploy_tree[
|
75
|
+
config.deploy_tree[app.to_sym][area.to_sym][:envs].include?(env)
|
76
76
|
end
|
77
77
|
|
78
78
|
def get_app_tree(config_tree)
|
data/lita-capistrano.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lita-capistrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexandre Gomes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lita
|