Skip to content

Commit

Permalink
Merge pull request #402 from drobny/relax-activesupport-dependency-to…
Browse files Browse the repository at this point in the history
…-support-rails-8

Relax activesupport dependency to support rails 8
  • Loading branch information
michaelklishin authored Nov 8, 2024
2 parents b413269 + 0032e26 commit fb316d1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Test

concurrency:
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

Expand All @@ -22,15 +22,15 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
- '3.3'

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Ruby
# To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
# change this to (see https://github.com/ruby/setup-ruby#versioning):
Expand Down
2 changes: 1 addition & 1 deletion hutch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
end
gem.add_runtime_dependency 'carrot-top', '~> 0.0.7'
gem.add_runtime_dependency 'multi_json', '~> 1.15'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '< 8'
gem.add_runtime_dependency 'activesupport', '>= 4.2', '<= 8'

gem.name = 'hutch'
gem.summary = 'Opinionated asynchronous inter-service communication using RabbitMQ'
Expand Down

0 comments on commit fb316d1

Please sign in to comment.