Skip to content

Commit

Permalink
relax the required rails version (#70)
Browse files Browse the repository at this point in the history
* relax the required rails version

* update test workflow
  • Loading branch information
johrstrom authored Feb 19, 2024
1 parent b3229e5 commit 0bc0e93
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ jobs:
- name: Setup Ruby using Bundler
uses: ruby/setup-ruby@v1
with:
ruby-version: "2.7.1"
ruby-version: "3.1.4"
bundler-cache: true
bundler: "2.1.4"
bundler: "2.3.6"

- name: install gems
run: bundle install
Expand Down
2 changes: 1 addition & 1 deletion lib/ood_appkit/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

module OodAppkit
# The current version of OodAppkit
VERSION = '2.1.1'
VERSION = '2.1.2'
end
2 changes: 1 addition & 1 deletion ood_appkit.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Gem::Specification.new do |s|
s.test_files = Dir["test/**/*"]
s.required_ruby_version = ">= 2.2.0"

s.add_dependency "rails", ">= 6.0.0", "< 7"
s.add_dependency "rails", ">= 6.0.0"
s.add_dependency "ood_core", "~> 0.1"
s.add_dependency "addressable", "~> 2.4"
s.add_dependency "redcarpet", "~> 3.2"
Expand Down

0 comments on commit 0bc0e93

Please sign in to comment.