cruisecontrolrb-to-slack 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 09e6788b23cc2d349cb43f80d44ce77910973baf
4
- data.tar.gz: 30cf3f748b51cb3dea72eb01ceb17a22f7ae0ede
3
+ metadata.gz: 2ef6461105765a6bd7fb6cee78ea4fe2f4057a90
4
+ data.tar.gz: c09623bcb77951916a66172a8965a663ff561425
5
5
  SHA512:
6
- metadata.gz: e0909c8d54417f8fcf900a9abf7f7915905f2d7c1481363f083f94c5bc403e1d89acc8366cc88ad5326da7154480a38e525c9cc295069685a5f2c3186d675d2f
7
- data.tar.gz: 605e4dee72e0ed40e8d85e3c1a6d46c3870cbc25bb8f283c41a725a03d2a42e8a79be18c67a83fa913a46ec0eba5485a0aba675e2bda53a4c146cf0a21e25cb4
6
+ metadata.gz: 10250307a6024e1bec899a6cd7e76c4604aae55078a044b793b7db49ba0db2bc6fa400b6e8ff4999f7c7dd890b245db373536582a1509b6375b705a128f44470
7
+ data.tar.gz: 0211e0687b074ae8a35b22fc38fff841bf05cfe698161a74e8d6b96ff506ec3a2c8a2f127421c847b74989a3b288e5cfe136ff06fa12ba2f6c1a22c09c687d11
data/.gitignore CHANGED
@@ -1 +1 @@
1
- .idea
1
+ pkg/
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cruisecontrolrb-to-slack (0.1.0)
4
+ cruisecontrolrb-to-slack (0.2.0)
5
5
  dante (~> 0.2.0)
6
6
  httparty (~> 0.13.1)
7
7
  nokogiri (~> 1.6.2)
@@ -13,28 +13,24 @@ GEM
13
13
  specs:
14
14
  coderay (1.1.0)
15
15
  dante (0.2.0)
16
- httparty (0.13.3)
16
+ httparty (0.13.7)
17
17
  json (~> 1.8)
18
18
  multi_xml (>= 0.5.2)
19
- json (1.8.2)
19
+ json (1.8.3)
20
20
  method_source (0.8.2)
21
- mini_portile (0.6.2)
21
+ mini_portile2 (2.0.0)
22
22
  minitest (5.5.1)
23
23
  multi_xml (0.5.5)
24
- nokogiri (1.6.5)
25
- mini_portile (~> 0.6.0)
24
+ nokogiri (1.6.7.2)
25
+ mini_portile2 (~> 2.0.0.rc2)
26
26
  pry (0.10.1)
27
27
  coderay (~> 1.1.0)
28
28
  method_source (~> 0.8.1)
29
29
  slop (~> 3.4)
30
30
  rake (10.4.2)
31
- rufus-scheduler (3.0.9)
32
- tzinfo
31
+ rufus-scheduler (3.2.0)
33
32
  slack-notifier (1.0.0)
34
33
  slop (3.6.0)
35
- thread_safe (0.3.4)
36
- tzinfo (1.2.2)
37
- thread_safe (~> 0.1)
38
34
 
39
35
  PLATFORMS
40
36
  ruby
@@ -45,3 +41,6 @@ DEPENDENCIES
45
41
  minitest
46
42
  pry
47
43
  rake
44
+
45
+ BUNDLED WITH
46
+ 1.11.2
data/README.md CHANGED
@@ -25,6 +25,7 @@ git clone git@github.com:epinault/cruisecontrolrb-to-slack.git
25
25
  cd cruisecontrolrb-to-slack
26
26
  bundle install
27
27
  rake build
28
+ gem install ./pkg/cruisecontrolrb-to-slack-0.2.0.gem
28
29
  ```
29
30
 
30
31
  ## Configuration
@@ -36,7 +37,7 @@ you `.profile` or `/etc/profile.d/cruisecontrolrc-to-slack.sh` (for all users)
36
37
 
37
38
  ```
38
39
  SLACK_WEBHOOK_URL=webhook_url # the webhook url you received from Slack
39
- CC_URL=your_cruise_control_url
40
+ CC_HOST=your_cruise_control_host # (e.g builder.cruisecontrol.com)
40
41
  ```
41
42
 
42
43
  The following are optionals
@@ -50,8 +51,8 @@ CC_PASSWORD=your_password
50
51
 
51
52
  ```
52
53
  SLACK_USERNAME=your_username # Name to show for the message coming in [Default: cruisecontrol]
53
- SLACK_CHANNEL=your_channel # the channel to receive notification [Default: #general]
54
- POLLING_INTERVAL # polling interval in minutes. defaults to 1 minute.
54
+ SLACK_CHANNEL=your_channel # the channel to receive notification [Default: #general] (include the '#')
55
+ POLLING_INTERVAL # polling interval in seconds. defaults to 5 seconds.
55
56
  ```
56
57
 
57
58
  ## Running
@@ -1,3 +1,3 @@
1
1
  module CruisecontrolrbToSlack
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cruisecontrolrb-to-slack
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
  - epinault
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-04-04 00:00:00.000000000 Z
11
+ date: 2016-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dante
@@ -188,7 +188,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
188
188
  version: '0'
189
189
  requirements: []
190
190
  rubyforge_project:
191
- rubygems_version: 2.2.2
191
+ rubygems_version: 2.2.5
192
192
  signing_key:
193
193
  specification_version: 4
194
194
  summary: A simple daemon to report last build status of projects and activities from