Skip to content

Commit

Permalink
Update all Gemfiles to use json 1.8+
Browse files Browse the repository at this point in the history
  • Loading branch information
John Gill authored and John Gill committed Mar 1, 2016
1 parent 62d72d3 commit ab0eff2
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 12 deletions.
2 changes: 1 addition & 1 deletion api/ruby/building-a-ci-server/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "http://rubygems.org"

gem "json", "1.7.7"
gem "json", "~> 1.8"
gem 'sinatra', '~> 1.3.5'
gem "shotgun"
gem "octokit", '~> 3.0'
7 changes: 5 additions & 2 deletions api/ruby/building-a-ci-server/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GEM
addressable (2.3.6)
faraday (0.9.0)
multipart-post (>= 1.2, < 3)
json (1.7.7)
json (1.8.3)
multipart-post (2.0.0)
octokit (3.0.0)
sawyer (~> 0.5.3)
Expand All @@ -26,7 +26,10 @@ PLATFORMS
ruby

DEPENDENCIES
json (= 1.7.7)
json (~> 1.8)
octokit (~> 3.0)
shotgun
sinatra (~> 1.3.5)

BUNDLED WITH
1.11.2
2 changes: 1 addition & 1 deletion api/ruby/delivering-deployments/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "http://rubygems.org"

gem "json", "1.7.7"
gem "json", "~> 1.8"
gem 'sinatra', '~> 1.3.5'
gem "shotgun"
gem "octokit", '~> 3.0'
7 changes: 5 additions & 2 deletions api/ruby/delivering-deployments/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ GEM
addressable (2.3.6)
faraday (0.9.0)
multipart-post (>= 1.2, < 3)
json (1.7.7)
json (1.8.3)
multipart-post (2.0.0)
octokit (3.0.0)
sawyer (~> 0.5.3)
Expand All @@ -26,7 +26,10 @@ PLATFORMS
ruby

DEPENDENCIES
json (= 1.7.7)
json (~> 1.8)
octokit (~> 3.0)
shotgun
sinatra (~> 1.3.5)

BUNDLED WITH
1.11.2
2 changes: 1 addition & 1 deletion api/ruby/rendering-data-as-graphs/Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source "http://rubygems.org"

gem "json", "1.7.7"
gem "json", "~> 1.8"
gem 'sinatra', '~> 1.3.5'
gem 'sinatra_auth_github', '~> 0.13.3'
gem 'octokit', '~> 1.23.0'
7 changes: 5 additions & 2 deletions api/ruby/rendering-data-as-graphs/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GEM
faraday_middleware (0.9.0)
faraday (>= 0.7.4, < 0.9)
hashie (1.2.0)
json (1.7.7)
json (1.8.3)
multi_json (1.6.1)
multipart-post (1.2.0)
netrc (0.7.7)
Expand Down Expand Up @@ -39,7 +39,10 @@ PLATFORMS
ruby

DEPENDENCIES
json (= 1.7.7)
json (~> 1.8)
octokit (~> 1.23.0)
sinatra (~> 1.3.5)
sinatra_auth_github (~> 0.13.3)

BUNDLED WITH
1.11.2
2 changes: 1 addition & 1 deletion hooks/ruby/configuring-your-server/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source "http://rubygems.org"

gem "json", "1.7.7"
gem "json", "~> 1.8"
gem 'sinatra', '~> 1.3.5'
7 changes: 5 additions & 2 deletions hooks/ruby/configuring-your-server/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
GEM
remote: http://rubygems.org/
specs:
json (1.7.7)
json (1.8.3)
rack (1.5.2)
rack-protection (1.5.2)
rack
Expand All @@ -15,5 +15,8 @@ PLATFORMS
ruby

DEPENDENCIES
json (= 1.7.7)
json (~> 1.8)
sinatra (~> 1.3.5)

BUNDLED WITH
1.11.2

0 comments on commit ab0eff2

Please sign in to comment.