capistrano-rtrack 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de995e4a4b8c3db7a5c8e447965265445c2b7214
4
- data.tar.gz: 34e8675bdf1d3454a5a268042e811f3538dc1ccb
3
+ metadata.gz: d950653233487f54177dec5728597dc0d9f08162
4
+ data.tar.gz: 99577e06b3717d00cd23347c852578587bdb34ff
5
5
  SHA512:
6
- metadata.gz: 3bc28abaafeb8d437aeeba2edc1c01635708afc4fc99b10e9026f39319ea4a2050c12f2f0016ccb5e4ddf45cf9cbc8faf136b04e40efd91e419dbf678d89acc6
7
- data.tar.gz: 9b74a8795586eac2e08920478f0002aa001bef81de3a195e6b6590a799f29e82639921d9dcdf90d368b87dd36b5f7b823d6bd1ed366e52d6d42491903564a560
6
+ metadata.gz: f1179c75ba97102c2c6da8dbf0643273ce70fbe58251ba2c21c1d1ddaf0581b26268e73b0b23a3bf121f7cab1715733d5e13c7974fab32c51a40b6e2f45d0b15
7
+ data.tar.gz: 8167dc3d604f87d92dbd5803ef017e7f65657b58ac348b3dbaebbf14d30c682f31bd9c855a98c40416933008e9fc3e39cac9f1cf9fab031501122d5ce7c9c28c
data/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Send capistrano deploy info to Rocket Tracker
4
4
 
5
+ Sinse Rocket Tracker is our internal task tracker app and is not available publically yet, this gem is of no use to you unless you know what's it for :)
6
+
5
7
  ## Installation
6
8
 
7
9
  Add this line to your application's Gemfile:
@@ -10,9 +10,9 @@ module Capistrano
10
10
  faraday.request :url_encoded
11
11
  faraday.adapter Faraday.default_adapter
12
12
  end
13
- puts "notifying rtrack, deployed sha #{fetch(:current_revision)} of #{fetch(:rtrack)} to #{fetch(:stage)}"
13
+ puts "Notifying RTrack, deployed sha #{fetch(:current_revision)} of #{fetch(:rtrack)} to #{fetch(:stage)}"
14
14
  resp = conn.post '/webhooks/capistrano', {
15
- sha: fetch(:current_revision) || "1b5ad5f",
15
+ sha: fetch(:current_revision),
16
16
  app: fetch(:rtrack),
17
17
  env: fetch(:stage)
18
18
  }
@@ -1,5 +1,5 @@
1
1
  module Capistrano
2
2
  module Rtrack
3
- VERSION = "0.1.0"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano-rtrack
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - glebtv
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-28 00:00:00.000000000 Z
11
+ date: 2015-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday