deploy_tracker 0.0.1 → 0.0.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.
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[current_revision]=#{current_revision}&deploy[repository]=#{repository}&api_key=#{deploy_tracking_api_key}"
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
@@ -1,3 +1,3 @@
1
1
  module DeployTracker
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
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: 29
4
+ hash: 27
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
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-01-27 00:00:00 +00:00
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