arel_toolkit 0.4.2 → 0.4.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/coverage.yml +48 -0
- data/.github/workflows/test.yml +68 -0
- data/.gitignore +3 -1
- data/.rubocop.yml +1 -0
- data/.ruby-version +1 -1
- data/.tool-versions +1 -0
- data/Appraisals +4 -0
- data/CHANGELOG.md +52 -3
- data/Gemfile.lock +129 -81
- data/README.md +20 -3
- data/arel_toolkit.gemspec +4 -7
- data/bin/console +2 -1
- data/bin/setup +23 -2
- data/docker-compose.yml +11 -0
- data/gemfiles/active_record_6.gemfile +7 -0
- data/gemfiles/active_record_6.gemfile.lock +212 -0
- data/gemfiles/arel_gems.gemfile.lock +11 -10
- data/gemfiles/default.gemfile.lock +11 -10
- data/lib/arel/enhance/node.rb +18 -12
- data/lib/arel/extensions.rb +1 -0
- data/lib/arel/extensions/conflict.rb +3 -3
- data/lib/arel/extensions/delete_statement.rb +20 -15
- data/lib/arel/extensions/function.rb +1 -1
- data/lib/arel/extensions/infer.rb +3 -3
- data/lib/arel/extensions/insert_statement.rb +4 -4
- data/lib/arel/extensions/select_core.rb +21 -7
- data/lib/arel/extensions/top.rb +8 -0
- data/lib/arel/extensions/transaction.rb +9 -9
- data/lib/arel/extensions/update_statement.rb +9 -23
- data/lib/arel/middleware/cache_accessor.rb +35 -0
- data/lib/arel/middleware/chain.rb +53 -29
- data/lib/arel/middleware/database_executor.rb +11 -2
- data/lib/arel/middleware/no_op_cache.rb +9 -0
- data/lib/arel/sql_to_arel/pg_query_visitor.rb +430 -521
- data/lib/arel/sql_to_arel/pg_query_visitor/frame_options.rb +37 -5
- data/lib/arel/transformer/prefix_schema_name.rb +5 -3
- data/lib/arel_toolkit.rb +1 -0
- data/lib/arel_toolkit/version.rb +1 -1
- metadata +31 -32
- data/.github/workflows/develop.yml +0 -88
- data/.github/workflows/master.yml +0 -67
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e85f00fe708ffd879f590ca295d142d1f3cfa600455bd470cb92d167e95bf838
|
4
|
+
data.tar.gz: 457b2e9b32edc91701ccb18605422581ee2413a53e7552ed77016d4de8f1edf9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1a6e1f095fda8a0f1c0bdd59996610ea3f4547a9abff88ba716a06dcb4beea86c66e5da6ba824eb3eae2ae9b63a049c45a4ec93e5ef4885039b9bc90651cb4d9
|
7
|
+
data.tar.gz: ce81c70c0ee865f421cbc3be78fcc3b3fd31464ad836aed8f8f4b67e37b7092c0533cc5e2e899fbcab700fe7fb916c01ec919716c2fcd50f5605d3a148167e2d
|
@@ -0,0 +1,48 @@
|
|
1
|
+
name: Coverage
|
2
|
+
on:
|
3
|
+
workflow_run:
|
4
|
+
workflows: ["Test"]
|
5
|
+
types:
|
6
|
+
- completed
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
upload_coverage:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
if: ${{ github.event.workflow_run.conclusion == 'success' }}
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
with:
|
15
|
+
ref: ${{ github.event.workflow_run.head_sha }}
|
16
|
+
- env:
|
17
|
+
GITHUB: ${{ toJson(github) }}
|
18
|
+
run: |
|
19
|
+
env
|
20
|
+
- name: Download coverage
|
21
|
+
uses: dawidd6/action-download-artifact@v2
|
22
|
+
with:
|
23
|
+
workflow: test.yml
|
24
|
+
commit: ${{ github.event.workflow_run.head_sha }}
|
25
|
+
run_id: ${{ github.event.workflow_run.id }}
|
26
|
+
run_number: ${{ github.event.workflow_run.run_number }}
|
27
|
+
name: rspec-coverage
|
28
|
+
path: ./coverage
|
29
|
+
- name: Report to codeclimate
|
30
|
+
if: always()
|
31
|
+
shell: bash
|
32
|
+
env:
|
33
|
+
JOB_STATUS: ${{ job.status == 'Success' }}
|
34
|
+
CC_TEST_REPORTER_ID: ${{ secrets.CC_TEST_REPORTER_ID }}
|
35
|
+
GIT_BRANCH: ${{ github.event.workflow_run.head_branch }}
|
36
|
+
GIT_COMMIT_SHA: ${{ github.event.workflow_run.head_sha }}
|
37
|
+
run: |
|
38
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
39
|
+
chmod +x ./cc-test-reporter
|
40
|
+
EXIT_CODE=$([[ "$JOB_STATUS" == true ]] && echo 0 || echo 1)
|
41
|
+
./cc-test-reporter after-build --exit-code $EXIT_CODE
|
42
|
+
|
43
|
+
- name: Upload coverage to GitHub pages
|
44
|
+
if: ${{ github.event.workflow_run.head_branch == 'master' }}
|
45
|
+
uses: maxheld83/ghpages@v0.2.1
|
46
|
+
env:
|
47
|
+
BUILD_DIR: ./coverage
|
48
|
+
GH_PAT: ${{ secrets.GH_PAT }}
|
@@ -0,0 +1,68 @@
|
|
1
|
+
name: Test
|
2
|
+
on:
|
3
|
+
push:
|
4
|
+
branches:
|
5
|
+
- master
|
6
|
+
pull_request:
|
7
|
+
|
8
|
+
jobs:
|
9
|
+
rspec:
|
10
|
+
name: RSpec
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
services:
|
13
|
+
postgres:
|
14
|
+
options: >-
|
15
|
+
--health-cmd pg_isready
|
16
|
+
--health-interval 10s
|
17
|
+
--health-timeout 5s
|
18
|
+
--health-retries 5
|
19
|
+
image: postgres:10.10
|
20
|
+
ports:
|
21
|
+
- 5432:5432
|
22
|
+
env:
|
23
|
+
POSTGRES_DB: arel_toolkit_test
|
24
|
+
POSTGRES_USER: postgres
|
25
|
+
steps:
|
26
|
+
- uses: actions/checkout@v2
|
27
|
+
|
28
|
+
# Based on https://github.com/paambaati/codeclimate-action/blob/0f8af43fca84b500025ca48b581bcff933244252/src/main.ts#L39-L57
|
29
|
+
- name: Set env for push event
|
30
|
+
run: |
|
31
|
+
GIT_BRANCH=$(echo "${{ github.ref }}" | sed 's/refs\/heads\///g')
|
32
|
+
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV
|
33
|
+
echo "GIT_COMMIT_SHA=${{ github.sha }}" >> $GITHUB_ENV
|
34
|
+
if: ${{ github.event_name == 'push' }}
|
35
|
+
- name: Set env for pull_request event
|
36
|
+
run: |
|
37
|
+
echo "GIT_BRANCH=${{ github.event.pull_request.head.ref }}" >> $GITHUB_ENV
|
38
|
+
echo "GIT_COMMIT_SHA=${{ github.event.pull_request.head.sha }}" >> $GITHUB_ENV
|
39
|
+
if: ${{ github.event_name == 'pull_request' }}
|
40
|
+
|
41
|
+
# From https://docs.github.com/en/actions/reference/context-and-expression-syntax-for-github-actions#contexts
|
42
|
+
- env:
|
43
|
+
GITHUB: ${{ toJson(github) }}
|
44
|
+
run: |
|
45
|
+
env
|
46
|
+
- uses: ruby/setup-ruby@v1
|
47
|
+
with:
|
48
|
+
bundler-cache: true
|
49
|
+
- run: bundle exec appraisal install
|
50
|
+
- name: Compile extension
|
51
|
+
run: |
|
52
|
+
bundle exec rake clean
|
53
|
+
bundle exec rake compile
|
54
|
+
- name: Start coverage
|
55
|
+
run: |
|
56
|
+
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
57
|
+
chmod +x ./cc-test-reporter
|
58
|
+
./cc-test-reporter before-build
|
59
|
+
- name: RSpec
|
60
|
+
run: |
|
61
|
+
bundle exec rspec --force-color
|
62
|
+
- name: Appraisal RSpec
|
63
|
+
run: |
|
64
|
+
bundle exec appraisal rspec --force-color
|
65
|
+
- uses: actions/upload-artifact@v2
|
66
|
+
with:
|
67
|
+
name: rspec-coverage
|
68
|
+
path: ./coverage
|
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.5.
|
1
|
+
2.5.9
|
data/.tool-versions
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby 2.7.3
|
data/Appraisals
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,54 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v0.4.6](https://github.com/mvgijssel/arel_toolkit/tree/v0.4.6) (2021-07-29)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/v0.4.5...v0.4.6)
|
6
|
+
|
7
|
+
**Implemented enhancements:**
|
8
|
+
|
9
|
+
- Use GitHub actions instead of TravisCI [\#137](https://github.com/mvgijssel/arel_toolkit/issues/137)
|
10
|
+
- Bump addressable from 2.7.0 to 2.8.0 [\#183](https://github.com/mvgijssel/arel_toolkit/pull/183) ([dependabot[bot]](https://github.com/apps/dependabot))
|
11
|
+
- Upgrade pg\_query to 2.0 [\#175](https://github.com/mvgijssel/arel_toolkit/pull/175) ([DeRRudi77](https://github.com/DeRRudi77))
|
12
|
+
|
13
|
+
**Fixed bugs:**
|
14
|
+
|
15
|
+
- Improve local development experience [\#184](https://github.com/mvgijssel/arel_toolkit/pull/184) ([mvgijssel](https://github.com/mvgijssel))
|
16
|
+
|
17
|
+
## [v0.4.5](https://github.com/mvgijssel/arel_toolkit/tree/v0.4.5) (2021-07-08)
|
18
|
+
|
19
|
+
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/v0.4.4...v0.4.5)
|
20
|
+
|
21
|
+
**Implemented enhancements:**
|
22
|
+
|
23
|
+
- Refactor test setup [\#181](https://github.com/mvgijssel/arel_toolkit/issues/181)
|
24
|
+
- Bump nokogiri from 1.11.1 to 1.11.7 [\#176](https://github.com/mvgijssel/arel_toolkit/pull/176) ([dependabot[bot]](https://github.com/apps/dependabot))
|
25
|
+
- Bump activerecord from 5.2.4.3 to 6.1.3 [\#173](https://github.com/mvgijssel/arel_toolkit/pull/173) ([dependabot[bot]](https://github.com/apps/dependabot))
|
26
|
+
|
27
|
+
## [v0.4.4](https://github.com/mvgijssel/arel_toolkit/tree/v0.4.4) (2021-02-11)
|
28
|
+
|
29
|
+
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/v0.4.3...v0.4.4)
|
30
|
+
|
31
|
+
**Implemented enhancements:**
|
32
|
+
|
33
|
+
- Bump nokogiri from 1.10.8 to 1.11.1 [\#171](https://github.com/mvgijssel/arel_toolkit/pull/171) ([dependabot[bot]](https://github.com/apps/dependabot))
|
34
|
+
|
35
|
+
**Fixed bugs:**
|
36
|
+
|
37
|
+
- Fix conditional update and delete statements in Rails 6 [\#170](https://github.com/mvgijssel/arel_toolkit/pull/170) ([mvgijssel](https://github.com/mvgijssel))
|
38
|
+
|
39
|
+
## [v0.4.3](https://github.com/mvgijssel/arel_toolkit/tree/v0.4.3) (2020-11-09)
|
40
|
+
|
41
|
+
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/v0.4.2...v0.4.3)
|
42
|
+
|
43
|
+
**Implemented enhancements:**
|
44
|
+
|
45
|
+
- Upgrade active\_record to 6 [\#167](https://github.com/mvgijssel/arel_toolkit/pull/167) ([khaleksa](https://github.com/khaleksa))
|
46
|
+
- Bump json from 2.2.0 to 2.3.1 [\#166](https://github.com/mvgijssel/arel_toolkit/pull/166) ([dependabot[bot]](https://github.com/apps/dependabot))
|
47
|
+
- Bump activesupport from 5.2.3 to 5.2.4.3 [\#165](https://github.com/mvgijssel/arel_toolkit/pull/165) ([dependabot[bot]](https://github.com/apps/dependabot))
|
48
|
+
- Update rake requirement from ~\> 10.0 to ~\> 13.0 [\#161](https://github.com/mvgijssel/arel_toolkit/pull/161) ([dependabot[bot]](https://github.com/apps/dependabot))
|
49
|
+
- Bump nokogiri from 1.10.4 to 1.10.8 [\#160](https://github.com/mvgijssel/arel_toolkit/pull/160) ([dependabot[bot]](https://github.com/apps/dependabot))
|
50
|
+
- Adds cache mechanism to middleware [\#154](https://github.com/mvgijssel/arel_toolkit/pull/154) ([Willianvdv](https://github.com/Willianvdv))
|
51
|
+
|
3
52
|
## [v0.4.2](https://github.com/mvgijssel/arel_toolkit/tree/v0.4.2) (2020-01-08)
|
4
53
|
|
5
54
|
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/v0.4.1...v0.4.2)
|
@@ -22,7 +71,7 @@
|
|
22
71
|
- Create a transformer that replaces a table reference with a subquery [\#141](https://github.com/mvgijssel/arel_toolkit/issues/141)
|
23
72
|
- Same signature for all middleware helpers [\#135](https://github.com/mvgijssel/arel_toolkit/issues/135)
|
24
73
|
- Instantiate PG::Result object instead of duck typed object [\#130](https://github.com/mvgijssel/arel_toolkit/issues/130)
|
25
|
-
- Add `
|
74
|
+
- Add `to_sql` to Arel.middleware which prints the sql after middleware processing [\#127](https://github.com/mvgijssel/arel_toolkit/issues/127)
|
26
75
|
- Extend Middleware to include the response from the database [\#126](https://github.com/mvgijssel/arel_toolkit/issues/126)
|
27
76
|
- Extend AddSchemaToTable to support multiple schemas and regclass typecasts [\#124](https://github.com/mvgijssel/arel_toolkit/issues/124)
|
28
77
|
- Optional context argument for Arel middleware [\#110](https://github.com/mvgijssel/arel_toolkit/issues/110)
|
@@ -88,7 +137,7 @@
|
|
88
137
|
|
89
138
|
## [v0.2.0](https://github.com/mvgijssel/arel_toolkit/tree/v0.2.0) (2019-05-30)
|
90
139
|
|
91
|
-
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/
|
140
|
+
[Full Changelog](https://github.com/mvgijssel/arel_toolkit/compare/6507f4849d752353a23e9c14b73e4759b370ada9...v0.2.0)
|
92
141
|
|
93
142
|
**Implemented enhancements:**
|
94
143
|
|
@@ -120,4 +169,4 @@
|
|
120
169
|
|
121
170
|
|
122
171
|
|
123
|
-
\* *This Changelog was automatically generated
|
172
|
+
\* *This Changelog was automatically generated by [github_changelog_generator] (https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile.lock
CHANGED
@@ -1,62 +1,98 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
arel_toolkit (0.4.
|
5
|
-
activerecord (
|
6
|
-
arel (~> 9.0.0)
|
4
|
+
arel_toolkit (0.4.6)
|
5
|
+
activerecord (>= 5.0.0, < 6.0.4)
|
7
6
|
pg (~> 1.1.4)
|
8
|
-
pg_query (~>
|
7
|
+
pg_query (~> 2.1)
|
9
8
|
|
10
9
|
GEM
|
11
10
|
remote: https://rubygems.org/
|
12
11
|
specs:
|
13
|
-
activemodel (
|
14
|
-
activesupport (=
|
15
|
-
activerecord (
|
16
|
-
activemodel (=
|
17
|
-
activesupport (=
|
18
|
-
|
19
|
-
activesupport (5.2.3)
|
12
|
+
activemodel (6.0.3.7)
|
13
|
+
activesupport (= 6.0.3.7)
|
14
|
+
activerecord (6.0.3.7)
|
15
|
+
activemodel (= 6.0.3.7)
|
16
|
+
activesupport (= 6.0.3.7)
|
17
|
+
activesupport (6.0.3.7)
|
20
18
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
19
|
i18n (>= 0.7, < 2)
|
22
20
|
minitest (~> 5.1)
|
23
21
|
tzinfo (~> 1.1)
|
24
|
-
|
22
|
+
zeitwerk (~> 2.2, >= 2.2.2)
|
23
|
+
addressable (2.8.0)
|
25
24
|
public_suffix (>= 2.0.2, < 5.0)
|
26
25
|
ansi (1.5.0)
|
27
|
-
appraisal (2.
|
26
|
+
appraisal (2.4.1)
|
28
27
|
bundler
|
29
28
|
rake
|
30
29
|
thor (>= 0.14.0)
|
31
|
-
approvals (0.0.
|
32
|
-
nokogiri (~> 1.
|
33
|
-
thor (~> 0
|
34
|
-
|
35
|
-
|
36
|
-
|
30
|
+
approvals (0.0.25)
|
31
|
+
nokogiri (~> 1.8)
|
32
|
+
thor (~> 1.0)
|
33
|
+
ast (2.4.2)
|
34
|
+
async (1.29.1)
|
35
|
+
console (~> 1.10)
|
36
|
+
nio4r (~> 2.3)
|
37
|
+
timers (~> 4.1)
|
38
|
+
async-http (0.56.3)
|
39
|
+
async (~> 1.25)
|
40
|
+
async-io (~> 1.28)
|
41
|
+
async-pool (~> 0.2)
|
42
|
+
protocol-http (~> 0.22.0)
|
43
|
+
protocol-http1 (~> 0.14.0)
|
44
|
+
protocol-http2 (~> 0.14.0)
|
45
|
+
async-http-faraday (0.11.0)
|
46
|
+
async-http (~> 0.42)
|
47
|
+
faraday
|
48
|
+
async-io (1.32.1)
|
49
|
+
async (~> 1.14)
|
50
|
+
async-pool (0.3.7)
|
51
|
+
async (~> 1.25)
|
52
|
+
binding_of_caller (1.0.0)
|
37
53
|
debug_inspector (>= 0.0.1)
|
38
|
-
coderay (1.1.
|
39
|
-
concurrent-ruby (1.1.
|
54
|
+
coderay (1.1.3)
|
55
|
+
concurrent-ruby (1.1.9)
|
56
|
+
console (1.13.1)
|
57
|
+
fiber-local
|
40
58
|
database_cleaner (1.7.0)
|
41
|
-
debug_inspector (
|
42
|
-
diff-lcs (1.
|
43
|
-
docile (1.
|
44
|
-
dpl (1.10.
|
45
|
-
faraday (
|
59
|
+
debug_inspector (1.1.0)
|
60
|
+
diff-lcs (1.4.4)
|
61
|
+
docile (1.4.0)
|
62
|
+
dpl (1.10.16)
|
63
|
+
faraday (1.5.1)
|
64
|
+
faraday-em_http (~> 1.0)
|
65
|
+
faraday-em_synchrony (~> 1.0)
|
66
|
+
faraday-excon (~> 1.1)
|
67
|
+
faraday-httpclient (~> 1.0.1)
|
68
|
+
faraday-net_http (~> 1.0)
|
69
|
+
faraday-net_http_persistent (~> 1.1)
|
70
|
+
faraday-patron (~> 1.0)
|
46
71
|
multipart-post (>= 1.2, < 3)
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
72
|
+
ruby2_keywords (>= 0.0.4)
|
73
|
+
faraday-em_http (1.0.0)
|
74
|
+
faraday-em_synchrony (1.0.0)
|
75
|
+
faraday-excon (1.1.0)
|
76
|
+
faraday-http-cache (2.2.0)
|
77
|
+
faraday (>= 0.8)
|
78
|
+
faraday-httpclient (1.0.1)
|
79
|
+
faraday-net_http (1.0.1)
|
80
|
+
faraday-net_http_persistent (1.2.0)
|
81
|
+
faraday-patron (1.0.0)
|
82
|
+
ffi (1.15.3)
|
83
|
+
fiber-local (1.0.0)
|
84
|
+
formatador (0.3.0)
|
85
|
+
github_changelog_generator (1.16.4)
|
52
86
|
activesupport
|
87
|
+
async (>= 1.25.0)
|
88
|
+
async-http-faraday
|
53
89
|
faraday-http-cache
|
54
90
|
multi_json
|
55
91
|
octokit (~> 4.6)
|
56
92
|
rainbow (>= 2.2.1)
|
57
93
|
rake (>= 10.0)
|
58
|
-
|
59
|
-
guard (2.
|
94
|
+
google-protobuf (3.17.3)
|
95
|
+
guard (2.17.0)
|
60
96
|
formatador (>= 0.2.4)
|
61
97
|
listen (>= 2.7, < 4.0)
|
62
98
|
lumberjack (>= 1.0.12, < 2.0)
|
@@ -77,74 +113,84 @@ GEM
|
|
77
113
|
guard (~> 2.0)
|
78
114
|
rubocop (~> 0.20)
|
79
115
|
hirb (0.7.3)
|
80
|
-
i18n (1.
|
116
|
+
i18n (1.8.10)
|
81
117
|
concurrent-ruby (~> 1.0)
|
82
118
|
interception (0.5)
|
83
|
-
jaro_winkler (1.5.
|
84
|
-
json (2.
|
85
|
-
listen (3.1
|
86
|
-
rb-fsevent (~> 0.
|
87
|
-
rb-inotify (~> 0.9, >= 0.9.
|
88
|
-
|
89
|
-
lumberjack (1.0.13)
|
119
|
+
jaro_winkler (1.5.4)
|
120
|
+
json (2.5.1)
|
121
|
+
listen (3.5.1)
|
122
|
+
rb-fsevent (~> 0.10, >= 0.10.3)
|
123
|
+
rb-inotify (~> 0.9, >= 0.9.10)
|
124
|
+
lumberjack (1.2.8)
|
90
125
|
memory_profiler (0.9.14)
|
91
126
|
method_source (0.9.2)
|
92
|
-
mini_portile2 (2.
|
93
|
-
minitest (5.
|
94
|
-
multi_json (1.
|
127
|
+
mini_portile2 (2.5.3)
|
128
|
+
minitest (5.14.4)
|
129
|
+
multi_json (1.15.0)
|
95
130
|
multipart-post (2.1.1)
|
96
131
|
nenv (0.3.0)
|
97
|
-
|
98
|
-
|
99
|
-
|
132
|
+
nio4r (2.5.7)
|
133
|
+
nokogiri (1.11.7)
|
134
|
+
mini_portile2 (~> 2.5.0)
|
135
|
+
racc (~> 1.4)
|
136
|
+
notiffany (0.1.3)
|
100
137
|
nenv (~> 0.1)
|
101
138
|
shellany (~> 0.0)
|
102
|
-
octokit (4.
|
139
|
+
octokit (4.21.0)
|
140
|
+
faraday (>= 0.9)
|
103
141
|
sawyer (~> 0.8.0, >= 0.5.3)
|
104
|
-
parallel (1.
|
105
|
-
parser (
|
106
|
-
ast (~> 2.4.
|
142
|
+
parallel (1.20.1)
|
143
|
+
parser (3.0.2.0)
|
144
|
+
ast (~> 2.4.1)
|
107
145
|
pg (1.1.4)
|
108
|
-
pg_query (
|
146
|
+
pg_query (2.1.0)
|
147
|
+
google-protobuf (>= 3.17.1)
|
148
|
+
protocol-hpack (1.4.2)
|
149
|
+
protocol-http (0.22.5)
|
150
|
+
protocol-http1 (0.14.1)
|
151
|
+
protocol-http (~> 0.22)
|
152
|
+
protocol-http2 (0.14.2)
|
153
|
+
protocol-hpack (~> 1.4)
|
154
|
+
protocol-http (~> 0.18)
|
109
155
|
pry (0.12.2)
|
110
156
|
coderay (~> 1.1.0)
|
111
157
|
method_source (~> 0.9.0)
|
112
158
|
pry-alias (0.0.1)
|
113
159
|
binding_of_caller
|
114
160
|
pry
|
115
|
-
pry-doc (1.
|
161
|
+
pry-doc (1.1.0)
|
116
162
|
pry (~> 0.11)
|
117
163
|
yard (~> 0.9.11)
|
118
164
|
pry-nav (0.3.0)
|
119
165
|
pry (>= 0.9.10, < 0.13.0)
|
120
|
-
pry-rescue (1.5.
|
166
|
+
pry-rescue (1.5.2)
|
121
167
|
interception (>= 0.5)
|
122
168
|
pry (>= 0.12.0)
|
123
169
|
pry-stack_explorer (0.4.9.3)
|
124
170
|
binding_of_caller (>= 0.7)
|
125
171
|
pry (>= 0.9.11)
|
126
|
-
public_suffix (4.0.
|
172
|
+
public_suffix (4.0.6)
|
173
|
+
racc (1.5.2)
|
127
174
|
rainbow (3.0.0)
|
128
|
-
rake (
|
129
|
-
rake-compiler (1.
|
175
|
+
rake (13.0.6)
|
176
|
+
rake-compiler (1.1.1)
|
130
177
|
rake
|
131
|
-
rb-fsevent (0.
|
132
|
-
rb-inotify (0.10.
|
178
|
+
rb-fsevent (0.11.0)
|
179
|
+
rb-inotify (0.10.1)
|
133
180
|
ffi (~> 1.0)
|
134
|
-
|
135
|
-
|
136
|
-
rspec-
|
137
|
-
rspec-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
rspec-expectations (3.8.3)
|
181
|
+
rspec (3.10.0)
|
182
|
+
rspec-core (~> 3.10.0)
|
183
|
+
rspec-expectations (~> 3.10.0)
|
184
|
+
rspec-mocks (~> 3.10.0)
|
185
|
+
rspec-core (3.10.1)
|
186
|
+
rspec-support (~> 3.10.0)
|
187
|
+
rspec-expectations (3.10.1)
|
142
188
|
diff-lcs (>= 1.2.0, < 2.0)
|
143
|
-
rspec-support (~> 3.
|
144
|
-
rspec-mocks (3.
|
189
|
+
rspec-support (~> 3.10.0)
|
190
|
+
rspec-mocks (3.10.2)
|
145
191
|
diff-lcs (>= 1.2.0, < 2.0)
|
146
|
-
rspec-support (~> 3.
|
147
|
-
rspec-support (3.
|
192
|
+
rspec-support (~> 3.10.0)
|
193
|
+
rspec-support (3.10.2)
|
148
194
|
rubocop (0.71.0)
|
149
195
|
jaro_winkler (~> 1.5.1)
|
150
196
|
parallel (~> 1.10)
|
@@ -152,8 +198,8 @@ GEM
|
|
152
198
|
rainbow (>= 2.2.2, < 4.0)
|
153
199
|
ruby-progressbar (~> 1.7)
|
154
200
|
unicode-display_width (>= 1.4.0, < 1.7)
|
155
|
-
ruby-progressbar (1.
|
156
|
-
|
201
|
+
ruby-progressbar (1.11.0)
|
202
|
+
ruby2_keywords (0.0.4)
|
157
203
|
sawyer (0.8.2)
|
158
204
|
addressable (>= 2.3.5)
|
159
205
|
faraday (> 0.8, < 2.0)
|
@@ -167,19 +213,21 @@ GEM
|
|
167
213
|
hirb
|
168
214
|
simplecov
|
169
215
|
simplecov-html (0.10.2)
|
170
|
-
stackprof (0.2.
|
171
|
-
thor (
|
216
|
+
stackprof (0.2.17)
|
217
|
+
thor (1.1.0)
|
172
218
|
thread_safe (0.3.6)
|
173
|
-
|
219
|
+
timers (4.3.3)
|
220
|
+
tzinfo (1.2.9)
|
174
221
|
thread_safe (~> 0.1)
|
175
|
-
unicode-display_width (1.6.
|
176
|
-
yard (0.9.
|
222
|
+
unicode-display_width (1.6.1)
|
223
|
+
yard (0.9.26)
|
224
|
+
zeitwerk (2.4.2)
|
177
225
|
|
178
226
|
PLATFORMS
|
179
227
|
ruby
|
180
228
|
|
181
229
|
DEPENDENCIES
|
182
|
-
appraisal (~> 2.
|
230
|
+
appraisal (~> 2.4.1)
|
183
231
|
approvals (~> 0.0.24)
|
184
232
|
arel_toolkit!
|
185
233
|
bundler (~> 2.0)
|
@@ -197,7 +245,7 @@ DEPENDENCIES
|
|
197
245
|
pry-nav
|
198
246
|
pry-rescue
|
199
247
|
pry-stack_explorer
|
200
|
-
rake (~>
|
248
|
+
rake (~> 13.0)
|
201
249
|
rake-compiler (~> 1.0)
|
202
250
|
rspec (~> 3.8)
|
203
251
|
rubocop (= 0.71.0)
|
@@ -206,4 +254,4 @@ DEPENDENCIES
|
|
206
254
|
stackprof (~> 0.2)
|
207
255
|
|
208
256
|
BUNDLED WITH
|
209
|
-
2.
|
257
|
+
2.2.23
|