Skip to content

Commit dfd7708

Browse files
authored
add railties 8.1, ruby 3.4 (#175)
1 parent 2483dfd commit dfd7708

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

.github/workflows/ruby.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
ruby: ["3.2", "3.3", "jruby"]
19+
ruby: ["3.2", "3.3", "3.4", "jruby"]
2020
gemfile:
2121
- "active_support_7_2"
2222
- "active_support_8_0"
23+
- "active_support_8_1"
2324
exclude:
2425
- ruby: "jruby"
2526
gemfile: "active_support_8_0"
27+
- ruby: "jruby"
28+
gemfile: "active_support_8_1"
2629
steps:
2730
- uses: actions/checkout@v4
2831
- name: Set up CouchDB

couch_potato.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.version = CouchPotato::VERSION
1414
s.platform = Gem::Platform::RUBY
1515

16-
s.add_dependency 'activemodel', ['>= 7.2', '< 8.1']
16+
s.add_dependency 'activemodel', ['>= 7.2', '< 8.2']
1717
s.add_dependency 'couchrest', '~>2.0.0'
1818
s.add_dependency 'json', '~> 2.3'
1919

gemfiles/active_support_8_1

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'railties', '~>8.1.2'
4+
gem 'activemodel'
5+
gem 'execjs'
6+
7+
gemspec name: 'couch_potato', path: '..'

0 commit comments

Comments
 (0)