Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
hirakiuc committed Mar 7, 2021
1 parent 1b86f9e commit 3aad3f4
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ jobs:
build:
working_directory: ~/app
docker:
- image: circleci/ruby:2.4.1
- image: circleci/ruby:2.7.2
steps:
- checkout
- restore_cache:
Expand Down
11 changes: 5 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in bitbucket.gemspec
gemspec

gem 'simple-auth', '~> 0.3.1'
gem 'simple-auth', '~> 0.5.0'
gem 'yard', '~> 0.9.12'
gem 'yardstick', '~> 0.9.9'

Expand All @@ -19,14 +19,13 @@ group :development, :test do
gem 'guard-rubocop'
gem 'gem-release'

gem 'rake', '~> 10.4'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.4'
gem 'rspec-mocks', '~> 3.4'
gem 'webmock', '~> 1.24'
gem 'rubocop', '~> 0.52.1'
gem 'webmock', '~> 3.12.1'
gem 'rubocop', '~> 1.11.0'
end

group :test do
gem 'simplecov', '~> 0.13.0', require: false
gem 'codeclimate-test-reporter', '~> 1.0.8', require: nil
gem 'simplecov', '~> 0.21.2', require: false
end
8 changes: 5 additions & 3 deletions spec/support/api_response_macros.rb
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,11 @@ def api_path(path, params = {})
def query_string(params)
return '' if params.empty?

'?' + params.each_pair.map do |k, v|
URI.escape(k.to_s) + '=' + URI.escape(v.to_s)
end.join('&')
key_values = params.to_a.map do |v|
[v[0].to_s, v[1].to_s]
end

'?' + URI.encode_www_form(key_values)
end

def fixture_json(method, path, ext)
Expand Down
8 changes: 4 additions & 4 deletions tinybucket.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency 'activemodel', ['>= 4.1.6']
spec.add_runtime_dependency 'activesupport', ['>= 4.1.6']
spec.add_runtime_dependency 'faraday', ['~> 0.9']
spec.add_runtime_dependency 'faraday_middleware', ['~> 0.10']
spec.add_runtime_dependency 'faraday-http-cache', ['~> 1.2']
spec.add_runtime_dependency 'faraday', ['~> 1.3']
spec.add_runtime_dependency 'faraday_middleware', ['~> 1.0']
spec.add_runtime_dependency 'faraday-http-cache', ['~> 2.2']
spec.add_runtime_dependency 'simple_oauth', ['~> 0.3']

spec.add_development_dependency 'bundler', '~> 1.10'
spec.add_development_dependency 'bundler', '~> 2.1'
end

0 comments on commit 3aad3f4

Please sign in to comment.