deploy_tracker 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
data/{README → README.markdown}
RENAMED
File without changes
|
@@ -23,9 +23,8 @@ Capistrano::Configuration.instance(:must_exist).load do
|
|
23
23
|
|
24
24
|
github_username = `git config --get github.user`.chomp
|
25
25
|
throw "[DeployTracker] Please set your github username with...\n\t`git config --global github.user YOUR_GITHUB_USERNAME`." if github_username.size==0
|
26
|
-
url = URI.parse('https://deploytracking.heroku.com/deploys')
|
27
26
|
|
28
|
-
data = "deploy[github_username]=#{github_username}&deploy[environment]=#{rails_env}&deploy[
|
27
|
+
data = "deploy[github_username]=#{github_username}&deploy[environment]=#{rails_env}&deploy[revision]=#{current_revision}&deploy[repository]=#{repository}&api_key=#{deploy_tracking_api_key}"
|
29
28
|
|
30
29
|
http = Net::HTTP.new('deploytracking.heroku.com', 443)
|
31
30
|
http.use_ssl = true
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: deploy_tracker
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 27
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 2
|
10
|
+
version: 0.0.2
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Andrew Nesbitt
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
18
|
+
date: 2011-02-12 00:00:00 +00:00
|
19
19
|
default_executable:
|
20
20
|
dependencies: []
|
21
21
|
|
@@ -32,7 +32,7 @@ files:
|
|
32
32
|
- .gitignore
|
33
33
|
- Gemfile
|
34
34
|
- LICENSE
|
35
|
-
- README
|
35
|
+
- README.markdown
|
36
36
|
- Rakefile
|
37
37
|
- deploy_tracker.gemspec
|
38
38
|
- lib/deploy_tracker.rb
|