Skip to content

Commit

Permalink
Merge pull request #137 from cloudfoundry/refactor-json
Browse files Browse the repository at this point in the history
refactor: replace multi_json with json_pure in runtime only
  • Loading branch information
peterhaochen47 authored Nov 1, 2024
2 parents 80ede1f + d616e29 commit 28e2a1f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion cf-uaac.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ Gem::Specification.new do |s|
s.add_development_dependency 'simplecov-rcov', '~> 0.3.1'
s.add_development_dependency 'ci_reporter', '~> 2.1.0'
s.add_development_dependency 'ci_reporter_rspec', '~> 1.0'
s.add_development_dependency 'multi_json', '>= 1.12.1', '< 1.16'
s.add_runtime_dependency 'highline', '>= 2', '< 4'
s.add_runtime_dependency 'eventmachine', '~> 1.2'
s.add_runtime_dependency 'launchy', '>= 2.5', '< 4.0'
s.add_runtime_dependency 'em-http-request', '~> 1.1', '>= 1.1.2'
s.add_runtime_dependency 'json_pure', '~>2.6'
s.add_runtime_dependency 'json_pure', '~>2.7'
s.add_runtime_dependency 'rack', '~>3.0'
end
2 changes: 1 addition & 1 deletion lib/uaa/cli/curl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
require 'rack'
require 'net/http'
require 'uaa/http'
require 'json'
require 'json/pure'

module CF::UAA
class CurlCli < CommonCli
Expand Down

0 comments on commit 28e2a1f

Please sign in to comment.