Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
env:
ACTIVESUPPORT: '8.1'
with:
ruby-version: '3.4'
ruby-version: '4.0'
bundler-cache: true
cache-version: '8.1'
- name: Rubocop
Expand All @@ -26,7 +26,7 @@ jobs:
fail-fast: false
matrix:
activesupport: ['7.1', '7.2', '8.0', '8.1']
ruby: ['3.3', '3.4']
ruby: ['3.3', '3.4', '4.0']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.7
4.0.0
1 change: 0 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
source 'https://rubygems.org'

# Silence warning in ruby 3.4 (will no longer be part of the default gems starting from Ruby 3.5)
gem 'logger'

# Declare your gem's dependencies in keys-oauth.gemspec.
Expand Down
2 changes: 1 addition & 1 deletion ja2r.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |s|
s.homepage = 'https://github.com/mkon/ja2r'
s.summary = 'Simple JSON-API to ruby object conversion'
s.license = 'MIT'
s.required_ruby_version = '>= 3.2', '< 3.5'
s.required_ruby_version = '>= 3.2', '< 4.1'

s.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'README.md']

Expand Down