ops_deploy 0.1.8.2 → 0.1.8.3

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: 7463a676e488caa261d788eacc2a76dc14421deb
4
- data.tar.gz: 66895b1ba36e7cca89161905a9dcfbedc46a5fba
3
+ metadata.gz: f982c964034710b65572b3ea37c1787eec0a0fd7
4
+ data.tar.gz: d9d586c32696fd1665771048f81076009c3ddaf7
5
5
  SHA512:
6
- metadata.gz: 7fa75606b0aaac3b8d38ab909b355c2258422488d6e626fa860ba856e4cb86785af449c2f9cda7aef512f24b3a5059748fa136735e991d933e6ec7bfd5dcc8f0
7
- data.tar.gz: 9e5fe8b24496a3fba3e3fdd669c44ff9f474e064c97c6a3aa1017b609d68ac480d4b569bb44716f4ddb9408d896d5eee58ff80002fe3bec78d7a9db046ad6c45
6
+ metadata.gz: 35cb437678df6c7f21afc1d94a3d452995299c32f2549a234f41e11c5cec69ccd15aa491b2f613af385dc4b4e82c881adc39b079bf8c064ec9f0d439d1c05f3e
7
+ data.tar.gz: a1e2eaa8072f5e2b7273a1ee0ef5ac6bc7bd47919a8dc134ee26523f685afb9761e1533810bf9d6bc6487d8d9d3a40438d2e662b54745f0914cf803616da488c
@@ -60,18 +60,15 @@ class OpsDeploy::CLI
60
60
  slack: @notifier.options[:slack])
61
61
  else
62
62
  step_msg('Checking deployments...')
63
- notify_user = @notifier.notify_user
64
63
 
65
64
  @main.deployments_callback = proc { |deployment|
66
65
  puts
67
66
  if (deployment.status == 'successful')
68
67
  success_msg('Deployment', 'OK'.green.bold,
69
- deployment.duration ? "(#{deployment.duration}s)" : '',
70
- notify_user ? "@#{notify_user}" : '')
68
+ deployment.duration ? "(#{deployment.duration}s)" : '')
71
69
  else
72
70
  failure_msg('Deployment', 'Failed'.red.bold,
73
- deployment.duration ? "(#{deployment.duration}s)" : '',
74
- notify_user ? "@#{notify_user}" : '')
71
+ deployment.duration ? "(#{deployment.duration}s)" : '')
75
72
  end
76
73
  }
77
74
 
@@ -84,8 +81,7 @@ class OpsDeploy::CLI
84
81
 
85
82
  info_msg('Deployments finished')
86
83
  else
87
- info_msg('No running deployments on stack', "'#{stack_id_name_or_object.blue}'",
88
- notify_user ? "@#{notify_user}" : '')
84
+ info_msg('No running deployments on stack', "'#{stack_id_name_or_object.blue}'")
89
85
  end
90
86
 
91
87
  send_notification(stack)
@@ -3,14 +3,12 @@ class OpsDeploy::CLI::Notifier
3
3
  attr_accessor :options
4
4
  attr_accessor :messages
5
5
  attr_accessor :notification_type
6
- attr_accessor :notify_user
7
6
 
8
7
  def initialize(options)
9
8
  @options = options
10
9
  @options.delete(:slack) if @options[:slack].nil? || @options[:slack][:webhook_url].nil?
11
10
  @messages = OpsDeploy::CLI::Notifier::Messages.new
12
11
  @notification_type = :info
13
- @notify_user = @options[:slack] ? @options[:slack][:notify_user] : nil
14
12
  end
15
13
 
16
14
  def notify(stack)
@@ -82,40 +80,57 @@ class OpsDeploy::CLI::Notifier::Slack < OpsDeploy::CLI::Notifier::Generic
82
80
 
83
81
  def notify(message)
84
82
  message = message.gsub(/\[[0-9;]+?m/, '')
85
- @slack_notifier.ping '', channel: @options[:channel], attachments: [
86
- {
87
- fallback: message,
88
- author_name: @stack.name,
89
- author_link: stack_link(@stack),
90
- text: message
91
- }
92
- ]
83
+
84
+ recipients.each do |recipient|
85
+ @slack_notifier.ping '', channel: recipient, attachments: [
86
+ {
87
+ fallback: message,
88
+ author_name: @stack.name,
89
+ author_link: stack_link(@stack),
90
+ text: message
91
+ }
92
+ ]
93
+ end
93
94
  end
94
95
 
95
96
  def success_notify(message)
96
97
  message = message.gsub(/\[[0-9;]+?m/, '')
97
- @slack_notifier.ping '', channel: @options[:channel], attachments: [
98
- {
99
- fallback: message,
100
- text: message,
101
- author_name: @stack.name,
102
- author_link: stack_link(@stack),
103
- color: 'good'
104
- }
105
- ]
98
+
99
+ recipients.each do |recipient|
100
+ @slack_notifier.ping '', channel: recipient, attachments: [
101
+ {
102
+ fallback: message,
103
+ text: message,
104
+ author_name: @stack.name,
105
+ author_link: stack_link(@stack),
106
+ color: 'good'
107
+ }
108
+ ]
109
+ end
106
110
  end
107
111
 
108
112
  def failure_notify(message)
109
113
  message = message.gsub(/\[[0-9;]+?m/, '')
110
- @slack_notifier.ping '', channel: @options[:channel], attachments: [
111
- {
112
- fallback: message,
113
- text: "#{message} <!channel>",
114
- author_name: @stack.name,
115
- author_link: stack_link(@stack),
116
- color: 'danger'
117
- }
118
- ]
114
+
115
+ recipients.each do |recipient|
116
+ @slack_notifier.ping '', channel: recipient, attachments: [
117
+ {
118
+ fallback: message,
119
+ text: "#{message} <!channel>",
120
+ author_name: @stack.name,
121
+ author_link: stack_link(@stack),
122
+ color: 'danger'
123
+ }
124
+ ]
125
+ end
126
+ end
127
+
128
+ private
129
+
130
+ def recipients
131
+ names = [options[:channel]]
132
+ names << "@#{options[:notify_user]}" if options[:notify_user]
133
+ names
119
134
  end
120
135
 
121
136
  def stack_link(stack)
@@ -1,3 +1,3 @@
1
1
  class OpsDeploy
2
- VERSION = '0.1.8.2'
2
+ VERSION = '0.1.8.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ops_deploy
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8.2
4
+ version: 0.1.8.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mahdi Bchetnia
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-17 00:00:00.000000000 Z
11
+ date: 2016-06-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk