Skip to content

Commit

Permalink
adds ruby 2.6 series testing to the testing matrix (#97)
Browse files Browse the repository at this point in the history
* adds ruby 2.6 series testing to the testing matrix

* Set nokogiri requirement to the Enroll version.

* try to load different versions of nokogiri based on Ruby version

* removes nokogiri from Gemfile.lock

* reverts unwanted changes

* relaxes dependency versions

---------

Co-authored-by: Trey Evans <lewis.r.evans@gmail.com>
  • Loading branch information
saikumar9 and TreyE authored Nov 7, 2023
1 parent 47b1942 commit 6b4cf6b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7.5", "3.0.5", "3.1.4", "3.2.2"]
ruby_version: ['2.6.3', '2.7.5', '3.0.5', '3.1.4', '3.2.2']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down
7 changes: 2 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ PATH
addressable (>= 2.8.0)
bunny (>= 2.14)
deep_merge (~> 1.2.0)
dry-configurable (= 0.12.1)
dry-configurable (~> 0.12)
dry-events (~> 0.3)
dry-inflector (~> 0.2)
dry-initializer (~> 3.0)
dry-monads (~> 1.3)
dry-schema (= 1.6.2)
dry-schema (~> 1.6)
dry-struct (~> 1.4)
dry-types (~> 1.5)
dry-validation (~> 1.6)
Expand Down Expand Up @@ -213,9 +213,6 @@ GEM
mustermann (1.1.1)
ruby2_keywords (~> 0.0.1)
nio4r (2.5.8)
nokogiri (1.14.2)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
oj (3.13.9)
ox (2.14.5)
parallel (1.20.1)
Expand Down
4 changes: 2 additions & 2 deletions event_source.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,15 @@ Gem::Specification.new do |spec|
spec.add_dependency 'addressable', '>= 2.8.0'
spec.add_dependency 'bunny', '>= 2.14'
spec.add_dependency 'deep_merge', '~> 1.2.0'
spec.add_dependency 'dry-configurable', '0.12.1'
spec.add_dependency 'dry-configurable', '~> 0.12'
spec.add_dependency 'dry-events', '~> 0.3'
spec.add_dependency 'dry-inflector', '~> 0.2'
spec.add_dependency 'dry-initializer', '~> 3.0'
spec.add_dependency 'dry-monads', '~> 1.3'
spec.add_dependency 'dry-struct', '~> 1.4'
spec.add_dependency 'dry-types', '~> 1.5'
spec.add_dependency 'dry-validation', '~> 1.6'
spec.add_dependency 'dry-schema', '1.6.2'
spec.add_dependency 'dry-schema', '~> 1.6'
spec.add_dependency 'faraday', '~> 1.4.1'
spec.add_dependency 'faraday_middleware', '~> 1.0'
spec.add_dependency 'logging', '~> 2.3.0'
Expand Down

0 comments on commit 6b4cf6b

Please sign in to comment.