Skip to content

Commit ca79412

Browse files
committed
FIX
1 parent aee63e0 commit ca79412

6 files changed

Lines changed: 39 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,12 @@ jobs:
2525
rails: '7.0'
2626
- ruby: '3.1'
2727
rails: '7.1'
28+
- ruby: '3.2'
29+
rails: '7.0'
30+
- ruby: '3.2'
31+
rails: '7.1'
32+
- ruby: '3.3'
33+
rails: '7.1'
2834

2935
env:
3036
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/ruby_${{ matrix.ruby }}_rails_${{ matrix.rails }}.gemfile

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ This gem supports:
3030
- Ruby 2.7 with Rails 6.1
3131
- Ruby 3.0 with Rails 6.1, 7.0
3232
- Ruby 3.1 with Rails 6.1, 7.0, 7.1
33+
- Ruby 3.2 with Rails 7.0, 7.1
34+
- Ruby 3.3 with Rails 7.1
3335

3436
## Development
3537

export_to.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
1414
spec.homepage = "https://github.com/superlanding/export_to"
1515
spec.license = "MIT"
1616

17-
spec.required_ruby_version = ">= 2.7.0", "< 3.2.0"
17+
spec.required_ruby_version = ">= 2.7.0", "< 3.4.0"
1818

1919
# Specify which files should be added to the gem when it is released.
2020
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source "https://rubygems.org"
2+
3+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4+
5+
gemspec path: ".."
6+
7+
gem "activesupport", "~> 7.0.0"
8+
gem "railties", "~> 7.0.0"
9+
gem "rake", ">= 13"
10+
gem "logger", "~> 1.5"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source "https://rubygems.org"
2+
3+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4+
5+
gemspec path: ".."
6+
7+
gem "activesupport", "~> 7.1.0"
8+
gem "railties", "~> 7.1.0"
9+
gem "rake", ">= 13"
10+
gem "logger", "~> 1.5"
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
source "https://rubygems.org"
2+
3+
git_source(:github) {|repo_name| "https://github.com/#{repo_name}" }
4+
5+
gemspec path: ".."
6+
7+
gem "activesupport", "~> 7.1.0"
8+
gem "railties", "~> 7.1.0"
9+
gem "rake", ">= 13"
10+
gem "logger", "~> 1.5"

0 commit comments

Comments
 (0)