where_lower 0.3.3 → 0.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/CODEOWNERS +13 -0
- data/.github/FUNDING.yml +2 -0
- data/.github/dependabot.yml +20 -0
- data/.github/workflows/coverage.yml +65 -0
- data/.github/workflows/tests.yaml +55 -0
- data/Appraisals +11 -7
- data/CHANGELOG.md +11 -2
- data/LICENSE +21 -0
- data/README.md +5 -4
- data/gemfiles/rails_6_0.gemfile +1 -1
- data/gemfiles/{rails_4_2.gemfile → rails_6_1.gemfile} +1 -2
- data/gemfiles/rails_7_0.gemfile +7 -0
- data/lib/where_lower/version.rb +1 -1
- data/spec/spec_helper.rb +18 -3
- data/where_lower.gemspec +5 -4
- metadata +35 -15
- data/.travis.yml +0 -25
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff35893df875b468f1525e64dbea1f47d22537d6c5020764cbacb7148ea90a69
|
4
|
+
data.tar.gz: 1c3ea50fb3b57b06310e21331ce9ac063eb26f62514e69db5415856ae7cc3c74
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 001dcaef51660228586009f8e50d6f1cb10fddba1699a94c6ebfbbfa581a464d3b838811fbe674cc89147602391b531c978eb955bfdfbd377226be7519f122df
|
7
|
+
data.tar.gz: 95ac3660304f6b33fa05380391a2279d29139dd7e4dc2c1e2e20c940211e53eba7eca413ba2df4c95e687b4c06983d2790f52fdb8d3fd3a6ba24d28c6064176b
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# Lines starting with '#' are comments.
|
2
|
+
# Each line is a file pattern followed by one or more owners.
|
3
|
+
|
4
|
+
# These owners will be the default owners for everything in the repo.
|
5
|
+
* @PikachuEXE
|
6
|
+
|
7
|
+
# Order is important. The last matching pattern has the most precedence.
|
8
|
+
# So if a pull request only touches javascript files, only these owners
|
9
|
+
# will be requested to review.
|
10
|
+
# *.rb @PikachuEXE
|
11
|
+
|
12
|
+
# You can also use email addresses if you prefer.
|
13
|
+
# docs/* docs@example.com
|
data/.github/FUNDING.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
version: 2
|
2
|
+
updates:
|
3
|
+
- package-ecosystem: bundler
|
4
|
+
directory: "/"
|
5
|
+
schedule:
|
6
|
+
interval: monthly
|
7
|
+
time: "06:00"
|
8
|
+
timezone: Asia/Hong_Kong
|
9
|
+
open-pull-requests-limit: 10
|
10
|
+
labels:
|
11
|
+
- "dependencies"
|
12
|
+
- package-ecosystem: github-actions
|
13
|
+
directory: "/"
|
14
|
+
schedule:
|
15
|
+
interval: monthly
|
16
|
+
time: "06:00"
|
17
|
+
timezone: Asia/Hong_Kong
|
18
|
+
open-pull-requests-limit: 10
|
19
|
+
labels:
|
20
|
+
- "dependencies"
|
@@ -0,0 +1,65 @@
|
|
1
|
+
name: Coverage
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
paths-ignore:
|
8
|
+
- 'README.md'
|
9
|
+
push:
|
10
|
+
branches:
|
11
|
+
- master
|
12
|
+
paths-ignore:
|
13
|
+
- 'README.md'
|
14
|
+
|
15
|
+
jobs:
|
16
|
+
coverage:
|
17
|
+
name: Coverage
|
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
|
26
|
+
ruby:
|
27
|
+
- "2.7"
|
28
|
+
gemfile:
|
29
|
+
- gemfiles/rails_6_0.gemfile
|
30
|
+
- gemfiles/rails_6_1.gemfile
|
31
|
+
- gemfiles/rails_7_0.gemfile
|
32
|
+
env:
|
33
|
+
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
|
34
|
+
COVERALLS: true
|
35
|
+
runs-on: ${{ matrix.os }}-latest
|
36
|
+
steps:
|
37
|
+
- name: Checkout
|
38
|
+
uses: actions/checkout@v3
|
39
|
+
|
40
|
+
- name: Setup Ruby
|
41
|
+
uses: ruby/setup-ruby@v1
|
42
|
+
with:
|
43
|
+
ruby-version: ${{ matrix.ruby }}
|
44
|
+
bundler-cache: true
|
45
|
+
|
46
|
+
- name: Collect coverage info
|
47
|
+
run: bundle exec rake spec
|
48
|
+
|
49
|
+
- name: Coveralls Parallel
|
50
|
+
uses: coverallsapp/github-action@master
|
51
|
+
continue-on-error: true
|
52
|
+
with:
|
53
|
+
github-token: ${{ secrets.github_token }}
|
54
|
+
flag-name: run-${{ matrix.ruby }}-${{ matrix.gemfile }}
|
55
|
+
parallel: true
|
56
|
+
|
57
|
+
finish:
|
58
|
+
needs: coverage
|
59
|
+
runs-on: ubuntu-latest
|
60
|
+
steps:
|
61
|
+
- name: Send to Coveralls
|
62
|
+
uses: coverallsapp/github-action@master
|
63
|
+
with:
|
64
|
+
github-token: ${{ secrets.GITHUB_TOKEN }}
|
65
|
+
parallel-finished: true
|
@@ -0,0 +1,55 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
pull_request:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
paths-ignore:
|
8
|
+
- 'README.md'
|
9
|
+
push:
|
10
|
+
branches:
|
11
|
+
- master
|
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
|
26
|
+
ruby:
|
27
|
+
- "2.7"
|
28
|
+
- "3.0"
|
29
|
+
- "3.1"
|
30
|
+
gemfile:
|
31
|
+
- gemfiles/rails_6_0.gemfile
|
32
|
+
- gemfiles/rails_6_1.gemfile
|
33
|
+
- gemfiles/rails_7_0.gemfile
|
34
|
+
allow_failures:
|
35
|
+
- false
|
36
|
+
include:
|
37
|
+
- os: ubuntu
|
38
|
+
ruby: ruby-head
|
39
|
+
gemfile: gemfiles/rails_7_0.gemfile
|
40
|
+
allow_failures: true
|
41
|
+
env:
|
42
|
+
BUNDLE_GEMFILE: "${{ matrix.gemfile }}"
|
43
|
+
ALLOW_FAILURES: "${{ matrix.allow_failures }}"
|
44
|
+
runs-on: ${{ matrix.os }}-latest
|
45
|
+
continue-on-error: ${{ endsWith(matrix.ruby, 'head') || matrix.ruby == 'debug' }}
|
46
|
+
steps:
|
47
|
+
- name: Checkout
|
48
|
+
uses: actions/checkout@v3
|
49
|
+
- name: Setup Ruby
|
50
|
+
uses: ruby/setup-ruby@v1
|
51
|
+
with:
|
52
|
+
ruby-version: ${{ matrix.ruby }}
|
53
|
+
bundler-cache: true
|
54
|
+
- name: Test
|
55
|
+
run: bundle exec rake spec || $ALLOW_FAILURES
|
data/Appraisals
CHANGED
@@ -1,10 +1,4 @@
|
|
1
1
|
|
2
|
-
appraise "rails_4_2" do
|
3
|
-
version = "~> 4.2.0"
|
4
|
-
gem "activerecord", version
|
5
|
-
gem "sqlite3", "~> 1.3.6"
|
6
|
-
end
|
7
|
-
|
8
2
|
appraise "rails_5_0" do
|
9
3
|
version = "~> 5.0.0"
|
10
4
|
gem "activerecord", version
|
@@ -22,6 +16,16 @@ appraise "rails_5_2" do
|
|
22
16
|
end
|
23
17
|
|
24
18
|
appraise "rails_6_0" do
|
25
|
-
version = "~> 6.0.0
|
19
|
+
version = "~> 6.0.0"
|
20
|
+
gem "activerecord", version
|
21
|
+
end
|
22
|
+
|
23
|
+
appraise "rails_6_1" do
|
24
|
+
version = "~> 6.1.0"
|
25
|
+
gem "activerecord", version
|
26
|
+
end
|
27
|
+
|
28
|
+
appraise "rails_7_0" do
|
29
|
+
version = "~> 7.0.0"
|
26
30
|
gem "activerecord", version
|
27
31
|
end
|
data/CHANGELOG.md
CHANGED
@@ -18,6 +18,14 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
18
18
|
- Nothing
|
19
19
|
|
20
20
|
|
21
|
+
## [0.3.4] - 2022-04-12
|
22
|
+
|
23
|
+
### Changed
|
24
|
+
|
25
|
+
- Add support for AR 7.x
|
26
|
+
- Drop support for Ruby < 2.7
|
27
|
+
|
28
|
+
|
21
29
|
## [0.3.3] - 2019-08-26
|
22
30
|
|
23
31
|
### Changed
|
@@ -74,8 +82,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
74
82
|
- Initial Release
|
75
83
|
|
76
84
|
|
77
|
-
[Unreleased]: https://github.com/PikachuEXE/where_lower/compare/v0.3.
|
78
|
-
[0.3.
|
85
|
+
[Unreleased]: https://github.com/PikachuEXE/where_lower/compare/v0.3.4...HEAD
|
86
|
+
[0.3.4]: https://github.com/PikachuEXE/where_lower/compare/v0.3.3...v0.3.4
|
87
|
+
[0.3.3]: https://github.com/PikachuEXE/where_lower/compare/v0.3.2...v0.3.3
|
79
88
|
[0.3.2]: https://github.com/PikachuEXE/where_lower/compare/v0.3.1...v0.3.2
|
80
89
|
[0.3.1]: https://github.com/PikachuEXE/where_lower/compare/v0.3.0...v0.3.1
|
81
90
|
[0.3.0]: https://github.com/PikachuEXE/where_lower/compare/v0.2.0...v0.3.0
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT LICENSE
|
2
|
+
|
3
|
+
Copyright (c) PikachuEXE <pikachuexe@gmail.com>
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
data/README.md
CHANGED
@@ -5,16 +5,17 @@ Provide an easy way to use case insensitive `where` in ActiveRecord.
|
|
5
5
|
|
6
6
|
## Status
|
7
7
|
|
8
|
-
[![Build Status](
|
8
|
+
[![GitHub Build Status](https://img.shields.io/github/workflow/status/PikachuEXE/where_lower/Tests?style=flat-square)](https://github.com/PikachuEXE/where_lower/actions?query=workflow%3ATests)
|
9
9
|
|
10
10
|
[![Gem Version](http://img.shields.io/gem/v/where_lower.svg?style=flat-square)](http://badge.fury.io/rb/where_lower)
|
11
|
+
[![License](https://img.shields.io/github/license/PikachuEXE/where_lower.svg?style=flat-square)](http://badge.fury.io/rb/where_lower)
|
11
12
|
|
12
13
|
[![Coverage Status](http://img.shields.io/coveralls/PikachuEXE/where_lower.svg?style=flat-square)](https://coveralls.io/r/PikachuEXE/where_lower)
|
13
|
-
|
14
|
-
[![Maintainability](https://api.codeclimate.com/v1/badges/7ec16febfe7879226a4b/maintainability)](https://codeclimate.com/github/PikachuEXE/where_lower/maintainability)
|
15
|
-
|
14
|
+
[![Code Climate](https://img.shields.io/codeclimate/maintainability/PikachuEXE/where_lower.svg?style=flat-square)](https://codeclimate.com/github/PikachuEXE/where_lower)
|
16
15
|
[![Inch CI](https://inch-ci.org/github/PikachuEXE/where_lower.svg?branch=master)](https://inch-ci.org/github/PikachuEXE/where_lower)
|
17
16
|
|
17
|
+
> The above badges are generated by https://shields.io/
|
18
|
+
|
18
19
|
|
19
20
|
## Installation
|
20
21
|
|
data/gemfiles/rails_6_0.gemfile
CHANGED
data/lib/where_lower/version.rb
CHANGED
data/spec/spec_helper.rb
CHANGED
@@ -1,6 +1,21 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
if ENV["COVERALLS"]
|
4
|
+
require "simplecov"
|
5
|
+
require "simplecov-lcov"
|
6
|
+
|
7
|
+
SimpleCov::Formatter::LcovFormatter.config do |c|
|
8
|
+
c.report_with_single_file = true
|
9
|
+
c.single_report_path = "coverage/lcov.info"
|
10
|
+
end
|
11
|
+
|
12
|
+
SimpleCov.formatters = SimpleCov::Formatter::MultiFormatter.new(
|
13
|
+
[SimpleCov::Formatter::HTMLFormatter, SimpleCov::Formatter::LcovFormatter]
|
14
|
+
)
|
15
|
+
|
16
|
+
SimpleCov.start do
|
17
|
+
add_filter "spec/"
|
18
|
+
end
|
4
19
|
end
|
5
20
|
|
6
21
|
require "active_record"
|
data/where_lower.gemspec
CHANGED
@@ -34,20 +34,21 @@ Gem::Specification.new do |s|
|
|
34
34
|
|
35
35
|
s.require_paths = ["lib"]
|
36
36
|
|
37
|
-
s.add_dependency "activerecord", ">=
|
37
|
+
s.add_dependency "activerecord", ">= 5.0.0", "< 8.0.0"
|
38
38
|
|
39
39
|
s.add_development_dependency "bundler", ">= 1.0.0"
|
40
|
-
s.add_development_dependency "rake", ">= 10.0", "<=
|
40
|
+
s.add_development_dependency "rake", ">= 10.0", "<= 14.0"
|
41
41
|
s.add_development_dependency "appraisal", "~> 2.0"
|
42
42
|
s.add_development_dependency "rspec", "~> 3.0"
|
43
43
|
s.add_development_dependency "rspec-its", "~> 1.0"
|
44
44
|
s.add_development_dependency "sqlite3", ">= 1.3"
|
45
45
|
s.add_development_dependency "database_cleaner", ">= 1.0"
|
46
|
-
s.add_development_dependency "
|
46
|
+
s.add_development_dependency "simplecov", ">= 0.21"
|
47
|
+
s.add_development_dependency "simplecov-lcov", ">= 0.8"
|
47
48
|
s.add_development_dependency "gem-release", ">= 0.7"
|
48
49
|
s.add_development_dependency "inch", "~> 0.5", ">= 0.5.10"
|
49
50
|
|
50
|
-
s.required_ruby_version = ">= 2.
|
51
|
+
s.required_ruby_version = ">= 2.7.0"
|
51
52
|
|
52
53
|
s.required_rubygems_version = ">= 1.4.0"
|
53
54
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: where_lower
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PikachuEXE
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-04-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|
@@ -16,20 +16,20 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 5.0.0
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version:
|
22
|
+
version: 8.0.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version:
|
29
|
+
version: 5.0.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version:
|
32
|
+
version: 8.0.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: bundler
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -53,7 +53,7 @@ dependencies:
|
|
53
53
|
version: '10.0'
|
54
54
|
- - "<="
|
55
55
|
- !ruby/object:Gem::Version
|
56
|
-
version: '
|
56
|
+
version: '14.0'
|
57
57
|
type: :development
|
58
58
|
prerelease: false
|
59
59
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -63,7 +63,7 @@ dependencies:
|
|
63
63
|
version: '10.0'
|
64
64
|
- - "<="
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '
|
66
|
+
version: '14.0'
|
67
67
|
- !ruby/object:Gem::Dependency
|
68
68
|
name: appraisal
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
@@ -135,19 +135,33 @@ dependencies:
|
|
135
135
|
- !ruby/object:Gem::Version
|
136
136
|
version: '1.0'
|
137
137
|
- !ruby/object:Gem::Dependency
|
138
|
-
name:
|
138
|
+
name: simplecov
|
139
139
|
requirement: !ruby/object:Gem::Requirement
|
140
140
|
requirements:
|
141
141
|
- - ">="
|
142
142
|
- !ruby/object:Gem::Version
|
143
|
-
version: '0.
|
143
|
+
version: '0.21'
|
144
144
|
type: :development
|
145
145
|
prerelease: false
|
146
146
|
version_requirements: !ruby/object:Gem::Requirement
|
147
147
|
requirements:
|
148
148
|
- - ">="
|
149
149
|
- !ruby/object:Gem::Version
|
150
|
-
version: '0.
|
150
|
+
version: '0.21'
|
151
|
+
- !ruby/object:Gem::Dependency
|
152
|
+
name: simplecov-lcov
|
153
|
+
requirement: !ruby/object:Gem::Requirement
|
154
|
+
requirements:
|
155
|
+
- - ">="
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: '0.8'
|
158
|
+
type: :development
|
159
|
+
prerelease: false
|
160
|
+
version_requirements: !ruby/object:Gem::Requirement
|
161
|
+
requirements:
|
162
|
+
- - ">="
|
163
|
+
- !ruby/object:Gem::Version
|
164
|
+
version: '0.8'
|
151
165
|
- !ruby/object:Gem::Dependency
|
152
166
|
name: gem-release
|
153
167
|
requirement: !ruby/object:Gem::Requirement
|
@@ -193,20 +207,26 @@ executables: []
|
|
193
207
|
extensions: []
|
194
208
|
extra_rdoc_files: []
|
195
209
|
files:
|
210
|
+
- ".github/CODEOWNERS"
|
211
|
+
- ".github/FUNDING.yml"
|
212
|
+
- ".github/dependabot.yml"
|
213
|
+
- ".github/workflows/coverage.yml"
|
214
|
+
- ".github/workflows/tests.yaml"
|
196
215
|
- ".gitignore"
|
197
216
|
- ".rspec"
|
198
|
-
- ".travis.yml"
|
199
217
|
- Appraisals
|
200
218
|
- CHANGELOG.md
|
201
219
|
- Gemfile
|
220
|
+
- LICENSE
|
202
221
|
- README.md
|
203
222
|
- Rakefile
|
204
223
|
- gemfiles/.bundle/config
|
205
|
-
- gemfiles/rails_4_2.gemfile
|
206
224
|
- gemfiles/rails_5_0.gemfile
|
207
225
|
- gemfiles/rails_5_1.gemfile
|
208
226
|
- gemfiles/rails_5_2.gemfile
|
209
227
|
- gemfiles/rails_6_0.gemfile
|
228
|
+
- gemfiles/rails_6_1.gemfile
|
229
|
+
- gemfiles/rails_7_0.gemfile
|
210
230
|
- lib/where_lower.rb
|
211
231
|
- lib/where_lower/active_record_extension.rb
|
212
232
|
- lib/where_lower/base.rb
|
@@ -227,14 +247,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
227
247
|
requirements:
|
228
248
|
- - ">="
|
229
249
|
- !ruby/object:Gem::Version
|
230
|
-
version: 2.
|
250
|
+
version: 2.7.0
|
231
251
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
232
252
|
requirements:
|
233
253
|
- - ">="
|
234
254
|
- !ruby/object:Gem::Version
|
235
255
|
version: 1.4.0
|
236
256
|
requirements: []
|
237
|
-
rubygems_version: 3.
|
257
|
+
rubygems_version: 3.3.11
|
238
258
|
signing_key:
|
239
259
|
specification_version: 4
|
240
260
|
summary: Provide an easy way to use case insensitive `where` in ActiveRecord.
|
data/.travis.yml
DELETED
@@ -1,25 +0,0 @@
|
|
1
|
-
# Send builds to container-based infrastructure
|
2
|
-
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
3
|
-
sudo: false
|
4
|
-
language: ruby
|
5
|
-
cache:
|
6
|
-
- bundler
|
7
|
-
rvm:
|
8
|
-
- 2.4
|
9
|
-
- 2.5
|
10
|
-
- 2.6
|
11
|
-
- ruby-head
|
12
|
-
gemfile:
|
13
|
-
- gemfiles/rails_4_2.gemfile
|
14
|
-
- gemfiles/rails_5_0.gemfile
|
15
|
-
- gemfiles/rails_5_1.gemfile
|
16
|
-
- gemfiles/rails_5_2.gemfile
|
17
|
-
- gemfiles/rails_6_0.gemfile
|
18
|
-
matrix:
|
19
|
-
fast_finish: true
|
20
|
-
exclude:
|
21
|
-
- rvm: 2.4
|
22
|
-
gemfile: gemfiles/rails_6_0.gemfile
|
23
|
-
allow_failures:
|
24
|
-
- rvm: ruby-head
|
25
|
-
|