Skip to content

Commit c706576

Browse files
committed
Merge branch 'master' into rkh-track-user-agent
Conflicts: Gemfile.lock
2 parents 950b8ce + c3a2595 commit c706576

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ language: ruby
33
env:
44
global:
55
- RUBY_GC_MALLOC_LIMIT=90000000
6-
- RUBY_FREE_MIN=200000
6+
- RUBY_GC_HEAP_FREE_SLOTS=200000
77
rvm:
88
- 2.1.2
99
addons:

Gemfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ GIT
77

88
GIT
99
remote: git://github.com/getsentry/raven-ruby.git
10-
revision: bd026531c390a7fbc71980871a7951bc0f2d737f
10+
revision: 84392e5db701f0b5c66802aab9cc82ef9a5ad830
1111
specs:
1212
sentry-raven (0.10.1)
1313
faraday (>= 0.7.6)
@@ -36,7 +36,7 @@ GIT
3636

3737
GIT
3838
remote: git://github.com/travis-ci/travis-core.git
39-
revision: 0f7a43a373cd3a7236ed4b5d3ca4a312a4e4c656
39+
revision: b4c4ae9beb6ba8d813491273dc75fa582ee719b0
4040
specs:
4141
travis-core (0.0.1)
4242
actionmailer (~> 3.2.19)
@@ -68,13 +68,13 @@ GIT
6868

6969
GIT
7070
remote: git://github.com/travis-ci/travis-support.git
71-
revision: 352419335e9b78cf087dbd8523879498d6177db4
71+
revision: 40365216662f639d36fc3a0463c4e189ee1563dd
7272
specs:
7373
travis-support (0.0.1)
7474

7575
GIT
7676
remote: git://github.com/travis-ci/travis-yaml.git
77-
revision: e899680992e31b25ddc0aad33d2189a7e588cc1f
77+
revision: 2c6ac75077123095e2ee8e8db435342ba2d03c2d
7878
specs:
7979
travis-yaml (0.1.0)
8080

@@ -136,7 +136,7 @@ GEM
136136
bunny (0.8.0)
137137
celluloid (0.12.0)
138138
timers (>= 1.0.0)
139-
chunky_png (1.3.1)
139+
chunky_png (1.3.3)
140140
coder (0.4.0)
141141
coderay (1.1.0)
142142
coercible (1.0.0)
@@ -171,7 +171,7 @@ GEM
171171
activesupport
172172
faraday (0.9.0)
173173
multipart-post (>= 1.2, < 3)
174-
ffi (1.9.5)
174+
ffi (1.9.6)
175175
foreman (0.64.0)
176176
dotenv (~> 0.7.0)
177177
thor (>= 0.13.6)
@@ -227,7 +227,7 @@ GEM
227227
multi_json (~> 1.0)
228228
signature (~> 0.1.6)
229229
rack (1.4.5)
230-
rack-attack (4.1.1)
230+
rack-attack (4.2.0)
231231
rack
232232
rack-protection (1.5.3)
233233
rack
@@ -268,7 +268,7 @@ GEM
268268
rspec-mocks (2.99.2)
269269
s3 (0.3.21)
270270
proxies (~> 0.2.0)
271-
sass (3.4.5)
271+
sass (3.4.6)
272272
sidekiq (2.5.0)
273273
celluloid (~> 0.12.0)
274274
compass
@@ -316,7 +316,7 @@ GEM
316316
treetop (1.4.15)
317317
polyglot
318318
polyglot (>= 0.3.1)
319-
tzinfo (0.3.41)
319+
tzinfo (0.3.42)
320320
unicorn (4.8.3)
321321
kgio (~> 2.6)
322322
rack
@@ -328,7 +328,7 @@ GEM
328328
coercible (~> 1.0)
329329
descendants_tracker (~> 0.0, >= 0.0.3)
330330
equalizer (~> 0.0, >= 0.0.9)
331-
yard (0.8.7.4)
331+
yard (0.8.7.6)
332332

333333
PLATFORMS
334334
ruby

spec/unit/api/v2/http/build_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
let(:data) { Travis::Api::V2::Http::Build.new(build).data }
8181

8282
it 'queries' do
83-
lambda { data }.should issue_queries(6)
83+
lambda { data }.should issue_queries(8)
8484
end
8585
end
8686

spec/unit/api/v2/http/builds_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
end
7272

7373
it 'queries' do
74-
lambda { data }.should issue_queries(3)
74+
lambda { data }.should issue_queries(9)
7575
end
7676
end
7777

0 commit comments

Comments
 (0)