Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
strehle committed Nov 18, 2024
2 parents 8b8d95b + 5eb788f commit 89065c3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cf-uaac.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Gem::Specification.new do |s|
s.require_paths = ['lib']

# dependencies
s.add_runtime_dependency 'cf-uaa-lib', '~> 4.0.4'
s.add_runtime_dependency 'cf-uaa-lib', '~> 4.0.6'
s.add_development_dependency 'rake', '~> 13.0'
s.add_development_dependency 'rspec', '~> 3.12'
s.add_development_dependency 'simplecov', '~> 0.22.0'
Expand Down
2 changes: 1 addition & 1 deletion lib/uaa/stub/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def json(status = nil, info)
info = {message: info} unless info.respond_to? :each
@status = status if status
headers["content-type"] = "application/json"
@body = MultiJson.dump(info)
@body = JSON.dump(info)
nil
end
def text(status = nil, info)
Expand Down

0 comments on commit 89065c3

Please sign in to comment.