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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1f3c26d550035dc25ff4a29fde961965b2aa3b3
4
- data.tar.gz: 2e90474c1194516456af12e226b0179d441843d7
3
+ metadata.gz: f3acafb33f5412566298f898c2c58fc6c01b4997
4
+ data.tar.gz: 632e43291a01bd6c2e6ae5e5a416dd30ac9cee5d
5
5
  SHA512:
6
- metadata.gz: 9389b67972da5324053a44b9e332a9d456064429f583570fa6c5057ceb7ea74ff5467cb1ae4a1d31621af950d94bcd34642782286aa4ea07d7945a28558326a9
7
- data.tar.gz: cd4aa4c7a3f9852e4d26aa142c2120e5d1115bfd93f0f816340a6889e87e73a3c550fdb6c1974eb706317d498c3a490e050cfd530894da36099dd13cf58c2d86
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[:commerce].include?(area.to_sym)
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[:commerce][area.to_sym][:envs].include?(env)
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)
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-capistrano"
3
- spec.version = "0.2.0"
3
+ spec.version = "0.2.1"
4
4
  spec.authors = ["Alexandre Gomes"]
5
5
  spec.email = ["alejdg@outlook.com.br"]
6
6
  spec.summary = "A Lita handler to integrate with Capistrano.rb"
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.0
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-02-04 00:00:00.000000000 Z
11
+ date: 2016-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: lita