Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
FLeinzi committed Sep 4, 2024
1 parent 180776e commit 820a510
Show file tree
Hide file tree
Showing 17 changed files with 37 additions and 35 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,18 @@ jobs:
directory: 'spec/rails-6.1'
- ruby: 3.0.0
directory: 'spec/rails-7.0'
- ruby: 3.1.1
directory: 'spec/rails-6.1'
- ruby: 3.1.1
directory: 'spec/rails-7.0'
- ruby: 3.1.1
directory: 'spec/rails-7.1'
- ruby: 3.3.3
directory: 'spec/rails-7.1'
- ruby: 3.1.1
directory: 'spec/rails-7.2'
- ruby: 3.3.3
directory: 'spec/rails-7.0'
- ruby: 3.3.3
directory: 'spec/rails-7.1'
- ruby: 3.3.3
directory: 'spec/rails-7.2'
steps:
Expand Down
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,15 +69,15 @@ Rails.application.config.content_security_policy do |policy|

The gem is tested against

| Versions | Ruby 2.5.8 | Ruby 2.6.6 | Ruby 2.7.2 | Ruby 3.0.0 | Ruby 3.1.1 | Ruby 3.3.3 |
|-----------|:------------------:|:------------------:|:------------------:|:------------------:|:------------------:|:------------------:|
| Rails 3.2 | :heavy_check_mark: | :x: | :x: | :x: | :x: | :x: |
| Rails 4.2 | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: | :x: | :x: |
| Rails 5.2 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: | :x: |
| Rails 6.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: |
| Rails 7.0 | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: | :x: |
| Rails 7.1 | :x: | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Rails 7.2 | :x: | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Versions | Ruby 2.5.8 | Ruby 2.6.6 | Ruby 2.7.2 | Ruby 3.0.0 | Ruby 3.1.1 | Ruby 3.3.3 |
|-----------|:------------------:|:------------------:|:------------------:|:------------------:|:------------------:|:-------------------:|
| Rails 3.2 | :heavy_check_mark: | :x: | :x: | :x: | :x: | :x: |
| Rails 4.2 | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: | :x: | :x: |
| Rails 5.2 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: | :x: |
| Rails 6.1 | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :x: | :x: |
| Rails 7.0 | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: |
| Rails 7.1 | :x: | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: |
| Rails 7.2 | :x: | :x: | :x: | :x: | :heavy_check_mark: | :heavy_check_mark: |


Later versions might work, earlier will not.
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def each_rails_version
puts "Skipping #{directory} since rails < 5 is not supported on ruby #{RUBY_VERSION}"
elsif rails_version < 6.0 && RUBY_VERSION >= "3.0.0"
puts "Skipping #{directory} since rails < 6 is not supported on ruby #{RUBY_VERSION}"
elsif rails_version < 7.0 && RUBY_VERSION >= "3.3.0"
elsif rails_version < 7.0 && RUBY_VERSION >= "3.1.0"
puts "Skipping #{directory} since rails < 7 is not supported on ruby #{RUBY_VERSION}"
else
puts '', "\033[44m#{directory}\033[0m", ''
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-3.2/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3'
gem 'rails', '~>3.2'
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-3.2/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actionmailer (3.2.22.1)
actionpack (= 3.2.22.1)
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-4.2/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3', '~>1.3.6'
gem 'rails', '=4.2.11.3'
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-4.2/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actionmailer (4.2.11.3)
actionpack (= 4.2.11.3)
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-5.2/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3'
gem 'rails', '=5.2.4.4'
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-5.2/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actioncable (5.2.4.4)
actionpack (= 5.2.4.4)
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-6.1/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3'
gem 'rails', '=6.1.2.1'
Expand Down
16 changes: 6 additions & 10 deletions spec/rails-6.1/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actioncable (6.1.2.1)
actionpack (= 6.1.2.1)
Expand Down Expand Up @@ -103,15 +103,12 @@ GEM
nokogiri (~> 1)
rake
mini_mime (1.0.2)
mini_portile2 (2.8.7)
mini_portile2 (2.6.1)
minitest (5.14.4)
net-protocol (0.2.2)
timeout
net-smtp (0.5.0)
net-protocol
net-smtp (0.2.0)
nio4r (2.5.7)
nokogiri (1.16.7)
mini_portile2 (~> 2.8.2)
nokogiri (1.12.5)
mini_portile2 (~> 2.6.1)
racc (~> 1.4)
public_suffix (4.0.6)
racc (1.8.1)
Expand Down Expand Up @@ -176,7 +173,6 @@ GEM
sprockets (>= 3.0.0)
sqlite3 (1.4.2)
thor (1.1.0)
timeout (0.4.1)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
websocket-driver (0.7.3)
Expand All @@ -201,4 +197,4 @@ DEPENDENCIES
sqlite3

BUNDLED WITH
2.2.3
2.3.27
2 changes: 1 addition & 1 deletion spec/rails-7.0/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3'
gem 'rails', '=7.0.1'
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-7.0/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actioncable (7.0.1)
actionpack (= 7.0.1)
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-7.1/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3', '~> 1.7'
gem 'rails', '=7.1.4'
Expand Down
3 changes: 2 additions & 1 deletion spec/rails-7.1/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actioncable (7.1.4)
actionpack (= 7.1.4)
Expand Down Expand Up @@ -132,6 +132,7 @@ GEM
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-smtp (0.5.0)
Expand Down
2 changes: 1 addition & 1 deletion spec/rails-7.2/Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
source 'http://rubygems.org'
source 'https://rubygems.org'

gem 'sqlite3', '~> 1.7'
gem 'rails', '=7.2.1'
Expand Down
3 changes: 2 additions & 1 deletion spec/rails-7.2/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ PATH
query_diet (0.7.2)

GEM
remote: http://rubygems.org/
remote: https://rubygems.org/
specs:
actioncable (7.2.1)
actionpack (= 7.2.1)
Expand Down Expand Up @@ -128,6 +128,7 @@ GEM
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-smtp (0.5.0)
Expand Down

0 comments on commit 820a510

Please sign in to comment.