Skip to content

Commit 4fa4f74

Browse files
authored
Merge pull request #1 from PikachuEXE/feature/ar-8.0
Update for rails 8.0 & CI
2 parents dafc380 + 970740c commit 4fa4f74

14 files changed

+345
-105
lines changed

.github/workflows/tests.yaml

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: Tests
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- development
7+
paths-ignore:
8+
- 'README.md'
9+
push:
10+
branches:
11+
- development
12+
paths-ignore:
13+
- 'README.md'
14+
15+
jobs:
16+
unit_tests:
17+
name: Unit Tests
18+
# Homemade support for [ci skip] no longer needed
19+
# https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/
20+
# if: "contains(github.event.commits[0].message, '[ci skip]') == false"
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
os:
25+
- ubuntu-latest
26+
ruby:
27+
- "3.1"
28+
- "3.2"
29+
- "3.3"
30+
gemfile:
31+
- gemfiles/rails_7_0.gemfile
32+
- gemfiles/rails_7_1.gemfile
33+
- gemfiles/rails_7_2.gemfile
34+
- gemfiles/rails_8_0.gemfile
35+
allow_failures:
36+
- false
37+
exclude:
38+
- ruby: "3.1"
39+
gemfile: gemfiles/rails_8_0.gemfile
40+
include:
41+
- os: ubuntu-latest
42+
ruby: ruby-head
43+
gemfile: gemfiles/rails_8_0.gemfile
44+
allow_failures: true
45+
env:
46+
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
47+
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
48+
runs-on: ${{ matrix.os }}
49+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
50+
steps:
51+
- name: Checkout
52+
uses: actions/checkout@v4
53+
- name: Setup Ruby
54+
uses: ruby/setup-ruby@v1
55+
with:
56+
ruby-version: ${{ matrix.ruby }}
57+
bundler-cache: true
58+
- name: Test
59+
run: bundle exec rake test || $ALLOW_FAILURES

.travis.yml

-22
This file was deleted.

Appraisals

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1-
("7.0".."7.0").each do |version|
1+
[("7.0".."7.2"), ("8.0".."8.0")].flat_map(&:to_a).each do |version|
22
appraise "rails_#{version.tr('.', '_')}" do
33
gem "activerecord", "~> #{version}.0"
4+
if version < "7.2"
5+
gem "sqlite3", "~> 1.3"
6+
end
47
end
58
end

activerecord-like.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
1515
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
1616
gem.require_paths = ["lib"]
1717

18-
gem.add_dependency "activerecord", "~> 7.0", ">= 7.0.0"
18+
gem.add_dependency "activerecord", ">= 7.0.0", "< 9.0"
1919

2020
# Required for Travis build to pass
2121
gem.add_development_dependency "pg"

gemfiles/rails_7_0.gemfile

+1
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
source "https://rubygems.org"
44

55
gem "activerecord", "~> 7.0.0"
6+
gem "sqlite3", "~> 1.3"
67

78
gemspec path: "../"

gemfiles/rails_7_1.gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "~> 7.1.0"
6+
gem "sqlite3", "~> 1.3"
7+
8+
gemspec path: "../"

gemfiles/rails_7_2.gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "~> 7.2.0"
6+
7+
gemspec path: "../"

gemfiles/rails_8_0.gemfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "activerecord", "~> 8.0.0"
6+
7+
gemspec path: "../"

lib/active_record/like.rb

+3-55
Original file line numberDiff line numberDiff line change
@@ -1,67 +1,15 @@
11
require "active_record"
2+
require_relative "like/scope_spawner"
23

34
module ActiveRecord
45
module Like
56
module WhereChainExtensions
67
def like(opts, *rest)
7-
opts.each do |k,v|
8-
if v.is_a?(Array) && v.empty?
9-
opts[k] = ''
10-
end
11-
end
12-
13-
chain_node(Arel::Nodes::Matches, opts, *rest) do |nodes|
14-
nodes.inject { |memo, node| Arel::Nodes::Or.new(memo, node) }
15-
end
8+
ActiveRecord::Like::ScopeSpawners::LikeScopeSpawners.spawn(@scope, opts, rest)
169
end
1710

1811
def not_like(opts, *rest)
19-
opts = opts.reject { |_, v| v.is_a?(Array) && v.empty? }
20-
chain_node(Arel::Nodes::DoesNotMatch, opts, *rest) do |nodes|
21-
Arel::Nodes::And.new(nodes)
22-
end
23-
end
24-
25-
private
26-
27-
def chain_node(node_type, opts, *rest, &block)
28-
@scope.tap do |s|
29-
# Assuming `opts` to be `Hash`
30-
opts.each_pair do |key, value|
31-
# 1. Build a where clause to generate "predicates" & "binds"
32-
# 2. Convert "predicates" into the one that matches `node_type` (like/not like)
33-
# 3. Re-use binding values to create new where clause
34-
equal_where_clause = if s.respond_to?(:where_clause_factory, true)
35-
# ActiveRecord 5.0 to 6.0
36-
s.send(:where_clause_factory).build({key => value}, rest)
37-
else
38-
# ActiveRecord 6.1, maybe higher
39-
s.send(:build_where_clause, {key => value}, rest)
40-
end
41-
equal_where_clause_predicate = equal_where_clause.send(:predicates).first
42-
43-
new_predicate = if equal_where_clause_predicate.right.is_a?(Array)
44-
nodes = equal_where_clause_predicate.right.map do |expr|
45-
node_type.new(equal_where_clause_predicate.left, expr)
46-
end
47-
Arel::Nodes::Grouping.new block.call(nodes)
48-
else
49-
node_type.new(equal_where_clause_predicate.left, equal_where_clause_predicate.right)
50-
end
51-
52-
# Passing `Arel::Nodes::Node` into `where_clause_factory`
53-
# Will lose the binding values since 5.1
54-
# due to this PR
55-
# https://github.com/rails/rails/pull/26073
56-
new_where_clause = if equal_where_clause.respond_to?(:binds)
57-
Relation::WhereClause.new([new_predicate], equal_where_clause.binds)
58-
else
59-
Relation::WhereClause.new([new_predicate])
60-
end
61-
62-
s.where_clause += new_where_clause
63-
end
64-
end
12+
ActiveRecord::Like::ScopeSpawners::NotLikeScopeSpawners.spawn(@scope, opts, rest)
6513
end
6614
end
6715
end

0 commit comments

Comments
 (0)