bard 0.9.8 → 0.9.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/bard.gemspec +1 -1
  3. data/lib/bard.rb +3 -3
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.8
1
+ 0.9.9
data/bard.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{bard}
8
- s.version = "0.9.8"
8
+ s.version = "0.9.9"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Micah Geisel", "Nick Hogle"]
data/lib/bard.rb CHANGED
@@ -82,11 +82,11 @@ class Bard < Thor
82
82
  run_crucial "git push origin master"
83
83
  run_crucial "git checkout integration"
84
84
 
85
- if `curl -s -I http://integrity.botandrose.com/#{project_name}` !~ /\b404\b/
85
+ if `curl -s -I --user botandrose:thecakeisalie http://integrity.botandrose.com/#{project_name}` !~ /\bStatus: 404\b/
86
86
  puts "Integrity: verifying build..."
87
- system "curl -sX POST http://integrity.botandrose.com/#{project_name}/builds"
87
+ system "curl -sX POST --user botandrose:thecakeisalie http://integrity.botandrose.com/#{project_name}/builds"
88
88
  while true
89
- response = `curl -s http://integrity.botandrose.com/#{project_name}`
89
+ response = `curl -s --user botandrose:thecakeisalie http://integrity.botandrose.com/#{project_name}`
90
90
  break unless response =~ /div class='(building|pending)' id='last_build'/
91
91
  sleep(2)
92
92
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 9
8
- - 8
9
- version: 0.9.8
8
+ - 9
9
+ version: 0.9.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Micah Geisel