Skip to content

Commit

Permalink
Unlock omniauth version (#2)
Browse files Browse the repository at this point in the history
* Unlock omniauth version

* update version

* v2 cache

* add platform

* Add linux platform

* Dont restore or save cache

* Undo not saving cache

* Remove --local

* update bundler

* Add local back to test

* try without cache

* Returning to v1
  • Loading branch information
WilliamNHarvey authored Apr 14, 2022
1 parent 445be56 commit dd7a56b
Show file tree
Hide file tree
Showing 9 changed files with 15 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ executors:
docker:
- image: cimg/ruby:2.6
environment:
BUNDLE_VERSION: "~> 2.2"
BUNDLE_VERSION: "2.3.11"

# yaml anchor filters
master_only: &master_only
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- v1-bundle-{{ checksum "Gemfile.lock" }}-
- run:
name: Install Ruby Dependencies
command: bundle install --local
command: bundle install --local # https://docs.google.com/document/d/1PB75sypyHm7eYOAVEorsdtMk3b3EE5AUtdYlZktOo2w/edit#
- save_cache:
key: v1-bundle-{{ checksum "Gemfile.lock" }}-
paths:
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
Changelog
=========

## 0.1.0 - 04/14/2022
* Unlock omniauth-oauth2 dependency

## 0.0.1 - 03/31/2022
* Initialize gem
14 changes: 8 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
PATH
remote: .
specs:
omniauth-doximity (0.0.1)
omniauth-doximity (0.1.0)
json
jwt
omniauth-oauth2 (~> 1.7.2)
omniauth-oauth2
openssl

GEM
Expand All @@ -30,7 +30,7 @@ GEM
faraday (2.2.0)
faraday-net_http (~> 2.0)
ruby2_keywords (>= 0.0.4)
faraday-net_http (2.0.1)
faraday-net_http (2.0.2)
hashie (5.0.0)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
Expand All @@ -45,9 +45,9 @@ GEM
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 3)
omniauth (2.0.4)
omniauth (2.1.0)
hashie (>= 3.4.6)
rack (>= 1.6.2, < 3)
rack (>= 2.2.3)
rack-protection
omniauth-oauth2 (1.7.2)
oauth2 (~> 1.4)
Expand Down Expand Up @@ -108,6 +108,8 @@ GEM

PLATFORMS
ruby
x86_64-darwin-18
x86_64-linux

DEPENDENCIES
bundler (~> 2.1.4)
Expand All @@ -120,4 +122,4 @@ DEPENDENCIES
sdoc

BUNDLED WITH
2.1.4
2.3.11
2 changes: 1 addition & 1 deletion lib/omniauth-doximity/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module Omniauth
module Doximity
VERSION = "0.0.1"
VERSION = "0.1.0"
end
end
2 changes: 1 addition & 1 deletion omniauth-doximity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |spec|

spec.add_runtime_dependency "json"
spec.add_runtime_dependency "jwt"
spec.add_runtime_dependency "omniauth-oauth2", "~> 1.7.2"
spec.add_runtime_dependency "omniauth-oauth2"
spec.add_runtime_dependency "openssl"

spec.add_development_dependency "bundler", "~> 2.1.4"
Expand Down
Binary file removed vendor/cache/faraday-net_http-2.0.1.gem
Binary file not shown.
Binary file added vendor/cache/faraday-net_http-2.0.2.gem
Binary file not shown.
Binary file removed vendor/cache/omniauth-2.0.4.gem
Binary file not shown.
Binary file added vendor/cache/omniauth-2.1.0.gem
Binary file not shown.

0 comments on commit dd7a56b

Please sign in to comment.