metka 2.0.1 → 2.2.1
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/ISSUE_TEMPLATE.md +15 -0
- data/.github/workflows/docs.yml +57 -0
- data/.github/workflows/rspec.yml +84 -0
- data/.github/workflows/rubocop.yml +21 -0
- data/.gitignore +3 -1
- data/.mdlrc +1 -0
- data/.rubocop-md.yml +20 -0
- data/.rubocop.yml +1 -2
- data/.ruby-version +1 -0
- data/CODE_OF_CONDUCT.md +3 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +128 -131
- data/README.md +72 -50
- data/forspell.dict +7 -0
- data/gemfiles/rails52.gemfile +2 -2
- data/gemfiles/rails6.gemfile +2 -2
- data/gemfiles/rails61.gemfile +6 -0
- data/gemfiles/{rails5.gemfile → railsmaster.gemfile} +1 -2
- data/gemfiles/rubocop.gemfile +4 -0
- data/lib/metka/generic_parser.rb +2 -2
- data/lib/metka/model.rb +5 -5
- data/lib/metka/query_builder.rb +8 -6
- data/lib/metka/query_builder/base_query.rb +37 -16
- data/lib/metka/version.rb +1 -1
- data/metka.gemspec +1 -2
- metadata +19 -25
- data/.github/workflows/continuous-integration-workflow.yml +0 -11
- data/.travis.yml +0 -35
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70ed1a14d6c370fa9c6ab618ba8224051e48ba3e856f183ce2caeb3454ab99c1
|
4
|
+
data.tar.gz: 5f536ff19a834c1215b775550703b531c841197b30ba4e03a205110d19226d83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7b8da3e7b194074d8c1c44a37bc7f1da79715b50a1ac6b07c723c15bf9843fda3f1e533bc21fe4af33c7fbaf1f87749033120fbbc642256a5d0186cddaac02f1
|
7
|
+
data.tar.gz: 2473535185adc7dfdc4b8454dc06ffef885a5e6d867e9748b55b6e5415df621dc5af31e6b595815e79c6990cfa08e958ceec6285190c30886846cb90c6a33596
|
@@ -0,0 +1,57 @@
|
|
1
|
+
name: Lint Docs
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
paths:
|
8
|
+
- "*.md"
|
9
|
+
- "**/*.md"
|
10
|
+
pull_request:
|
11
|
+
paths:
|
12
|
+
- "*.md"
|
13
|
+
- "**/*.md"
|
14
|
+
|
15
|
+
jobs:
|
16
|
+
markdownlint:
|
17
|
+
runs-on: ubuntu-latest
|
18
|
+
steps:
|
19
|
+
- uses: actions/checkout@v2
|
20
|
+
- uses: ruby/setup-ruby@v1
|
21
|
+
with:
|
22
|
+
ruby-version: 2.7
|
23
|
+
- name: Run Markdown linter
|
24
|
+
run: |
|
25
|
+
gem install mdl
|
26
|
+
mdl README.md .github/*.md
|
27
|
+
rubocop:
|
28
|
+
runs-on: ubuntu-latest
|
29
|
+
steps:
|
30
|
+
- uses: actions/checkout@v2
|
31
|
+
- uses: ruby/setup-ruby@v1
|
32
|
+
with:
|
33
|
+
ruby-version: 2.7
|
34
|
+
- name: Lint Markdown files with RuboCop
|
35
|
+
run: |
|
36
|
+
gem install bundler
|
37
|
+
bundle install --gemfile gemfiles/rubocop.gemfile --jobs 4 --retry 3
|
38
|
+
bundle exec --gemfile gemfiles/rubocop.gemfile rubocop -c .rubocop-md.yml
|
39
|
+
forspell:
|
40
|
+
runs-on: ubuntu-latest
|
41
|
+
steps:
|
42
|
+
- uses: actions/checkout@v2
|
43
|
+
- name: Install Hunspell
|
44
|
+
run: |
|
45
|
+
sudo apt-get install hunspell
|
46
|
+
- uses: ruby/setup-ruby@v1
|
47
|
+
with:
|
48
|
+
ruby-version: 2.7
|
49
|
+
- name: Cache installed gems
|
50
|
+
uses: actions/cache@v1
|
51
|
+
with:
|
52
|
+
path: /home/runner/.rubies/ruby-2.7.0/lib/ruby/gems/2.7.0
|
53
|
+
key: gems-cache-${{ runner.os }}
|
54
|
+
- name: Install Forspell
|
55
|
+
run: gem install forspell
|
56
|
+
- name: Run Forspell
|
57
|
+
run: forspell *.md .github/*.md
|
@@ -0,0 +1,84 @@
|
|
1
|
+
name: Build
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
rspec:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
env:
|
13
|
+
BUNDLE_JOBS: 4
|
14
|
+
BUNDLE_RETRY: 3
|
15
|
+
CI: true
|
16
|
+
RAILS_ENV: test
|
17
|
+
DATABASE_URL: postgres://postgres:postgres@localhost:5432
|
18
|
+
strategy:
|
19
|
+
fail-fast: false
|
20
|
+
matrix:
|
21
|
+
ruby: ["2.7"]
|
22
|
+
postgres: ["12"]
|
23
|
+
gemfile: [
|
24
|
+
"gemfiles/rails61.gemfile"
|
25
|
+
]
|
26
|
+
fx: ["false"]
|
27
|
+
include:
|
28
|
+
- ruby: "3.0"
|
29
|
+
postgres: "13"
|
30
|
+
gemfile: "gemfiles/railsmaster.gemfile"
|
31
|
+
fx: "false"
|
32
|
+
- ruby: "2.6"
|
33
|
+
postgres: "12"
|
34
|
+
gemfile: "gemfiles/rails61.gemfile"
|
35
|
+
fx: "false"
|
36
|
+
- ruby: "2.6"
|
37
|
+
postgres: "12"
|
38
|
+
gemfile: "gemfiles/rails6.gemfile"
|
39
|
+
fx: "false"
|
40
|
+
- ruby: "2.5"
|
41
|
+
postgres: "11"
|
42
|
+
gemfile: "gemfiles/rails52.gemfile"
|
43
|
+
fx: "false"
|
44
|
+
services:
|
45
|
+
postgres:
|
46
|
+
image: postgres:${{ matrix.postgres }}
|
47
|
+
ports: ["5432:5432"]
|
48
|
+
env:
|
49
|
+
POSTGRES_PASSWORD: postgres
|
50
|
+
options: >-
|
51
|
+
--health-cmd pg_isready
|
52
|
+
--health-interval 10s
|
53
|
+
--health-timeout 5s
|
54
|
+
--health-retries 5
|
55
|
+
steps:
|
56
|
+
- uses: actions/checkout@v2
|
57
|
+
- uses: actions/cache@v1
|
58
|
+
with:
|
59
|
+
path: /home/runner/bundle
|
60
|
+
key: bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }}
|
61
|
+
restore-keys: |
|
62
|
+
bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-
|
63
|
+
- name: Install system deps
|
64
|
+
run: |
|
65
|
+
sudo apt-get update
|
66
|
+
sudo apt-get -yqq install libpq-dev
|
67
|
+
- uses: ruby/setup-ruby@v1
|
68
|
+
with:
|
69
|
+
ruby-version: ${{ matrix.ruby }}
|
70
|
+
- name: Bundle install
|
71
|
+
run: |
|
72
|
+
bundle config path /home/runner/bundle
|
73
|
+
bundle config --global gemfile ${{ matrix.gemfile }}
|
74
|
+
bundle install
|
75
|
+
bundle update
|
76
|
+
- name: Prepare test database
|
77
|
+
run: |
|
78
|
+
bundle exec rake dummy:db:create
|
79
|
+
bundle exec rake dummy:db:migrate:reset
|
80
|
+
- name: Run RSpec
|
81
|
+
env:
|
82
|
+
USE_FX: ${{ matrix.fx }}
|
83
|
+
run: |
|
84
|
+
bundle exec rspec -f d --force-color
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: Rubocop
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
rubocop:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
steps:
|
13
|
+
- uses: actions/checkout@v2
|
14
|
+
- uses: ruby/setup-ruby@v1
|
15
|
+
with:
|
16
|
+
ruby-version: 2.7
|
17
|
+
- name: RuboCop
|
18
|
+
run: |
|
19
|
+
gem install bundler
|
20
|
+
bundle install --gemfile gemfiles/rubocop.gemfile --jobs 4 --retry 3
|
21
|
+
bundle exec --gemfile gemfiles/rubocop.gemfile rubocop
|
data/.gitignore
CHANGED
data/.mdlrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rules "~MD013", "~MD026", "~MD029", "~MD034", "~MD041"
|
data/.rubocop-md.yml
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
inherit_from: ".rubocop.yml"
|
2
|
+
|
3
|
+
require:
|
4
|
+
- rubocop-md
|
5
|
+
|
6
|
+
|
7
|
+
AllCops:
|
8
|
+
Include:
|
9
|
+
- '**/*.md'
|
10
|
+
|
11
|
+
Lint/Void:
|
12
|
+
Exclude:
|
13
|
+
- '**/*.md'
|
14
|
+
|
15
|
+
Lint/DuplicateMethods:
|
16
|
+
Exclude:
|
17
|
+
- '**/*.md'
|
18
|
+
|
19
|
+
Layout/SpaceInsideHashLiteralBraces:
|
20
|
+
EnforcedStyle: space
|
data/.rubocop.yml
CHANGED
@@ -9,7 +9,6 @@ AllCops:
|
|
9
9
|
- 'Gemfile'
|
10
10
|
- 'vendor/**/*'
|
11
11
|
- 'gemfiles/**/*'
|
12
|
-
- '**/*.md'
|
13
12
|
DisplayCopNames: true
|
14
13
|
TargetRubyVersion: 2.5
|
15
14
|
|
@@ -19,7 +18,7 @@ Style/TrailingCommaInArrayLiteral:
|
|
19
18
|
Style/TrailingCommaInHashLiteral:
|
20
19
|
EnforcedStyleForMultiline: no_comma
|
21
20
|
|
22
|
-
Layout/
|
21
|
+
Layout/ParameterAlignment:
|
23
22
|
EnforcedStyle: with_first_parameter
|
24
23
|
|
25
24
|
# See https://github.com/rubocop-hq/rubocop/issues/4222
|
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
2.7.2
|
data/CODE_OF_CONDUCT.md
CHANGED
@@ -22,8 +22,7 @@ include:
|
|
22
22
|
|
23
23
|
Examples of unacceptable behavior by participants include:
|
24
24
|
|
25
|
-
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
-
advances
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or advances
|
27
26
|
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
27
|
* Public or private harassment
|
29
28
|
* Publishing others' private information, such as a physical or electronic
|
@@ -67,8 +66,8 @@ members of the project's leadership.
|
|
67
66
|
|
68
67
|
## Attribution
|
69
68
|
|
70
|
-
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
71
|
-
available at [http://contributor-covenant.org/version/1/4][version]
|
69
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
|
70
|
+
version 1.4, available at [http://contributor-covenant.org/version/1/4][version]
|
72
71
|
|
73
72
|
[homepage]: http://contributor-covenant.org
|
74
73
|
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,194 +1,191 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
metka (2.0
|
4
|
+
metka (2.1.0)
|
5
5
|
dry-configurable (>= 0.8)
|
6
|
-
rails (>= 5.
|
6
|
+
rails (>= 5.2)
|
7
7
|
|
8
8
|
GEM
|
9
9
|
remote: https://rubygems.org/
|
10
10
|
specs:
|
11
|
-
actioncable (
|
12
|
-
actionpack (=
|
11
|
+
actioncable (6.1.0)
|
12
|
+
actionpack (= 6.1.0)
|
13
|
+
activesupport (= 6.1.0)
|
13
14
|
nio4r (~> 2.0)
|
14
|
-
websocket-driver (
|
15
|
-
|
16
|
-
actionpack (=
|
17
|
-
|
18
|
-
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.1.0)
|
17
|
+
actionpack (= 6.1.0)
|
18
|
+
activejob (= 6.1.0)
|
19
|
+
activerecord (= 6.1.0)
|
20
|
+
activestorage (= 6.1.0)
|
21
|
+
activesupport (= 6.1.0)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.1.0)
|
24
|
+
actionpack (= 6.1.0)
|
25
|
+
actionview (= 6.1.0)
|
26
|
+
activejob (= 6.1.0)
|
27
|
+
activesupport (= 6.1.0)
|
19
28
|
mail (~> 2.5, >= 2.5.4)
|
20
29
|
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (
|
22
|
-
actionview (=
|
23
|
-
activesupport (=
|
24
|
-
rack (~> 2.0)
|
30
|
+
actionpack (6.1.0)
|
31
|
+
actionview (= 6.1.0)
|
32
|
+
activesupport (= 6.1.0)
|
33
|
+
rack (~> 2.0, >= 2.0.9)
|
25
34
|
rack-test (>= 0.6.3)
|
26
35
|
rails-dom-testing (~> 2.0)
|
27
|
-
rails-html-sanitizer (~> 1.0, >= 1.0
|
28
|
-
|
29
|
-
|
36
|
+
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
37
|
+
actiontext (6.1.0)
|
38
|
+
actionpack (= 6.1.0)
|
39
|
+
activerecord (= 6.1.0)
|
40
|
+
activestorage (= 6.1.0)
|
41
|
+
activesupport (= 6.1.0)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.0)
|
44
|
+
activesupport (= 6.1.0)
|
30
45
|
builder (~> 3.1)
|
31
46
|
erubi (~> 1.4)
|
32
47
|
rails-dom-testing (~> 2.0)
|
33
|
-
rails-html-sanitizer (~> 1.
|
34
|
-
activejob (
|
35
|
-
activesupport (=
|
48
|
+
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
49
|
+
activejob (6.1.0)
|
50
|
+
activesupport (= 6.1.0)
|
36
51
|
globalid (>= 0.3.6)
|
37
|
-
activemodel (
|
38
|
-
activesupport (=
|
39
|
-
activerecord (
|
40
|
-
activemodel (=
|
41
|
-
activesupport (=
|
42
|
-
|
43
|
-
|
52
|
+
activemodel (6.1.0)
|
53
|
+
activesupport (= 6.1.0)
|
54
|
+
activerecord (6.1.0)
|
55
|
+
activemodel (= 6.1.0)
|
56
|
+
activesupport (= 6.1.0)
|
57
|
+
activestorage (6.1.0)
|
58
|
+
actionpack (= 6.1.0)
|
59
|
+
activejob (= 6.1.0)
|
60
|
+
activerecord (= 6.1.0)
|
61
|
+
activesupport (= 6.1.0)
|
62
|
+
marcel (~> 0.3.1)
|
63
|
+
mimemagic (~> 0.3.2)
|
64
|
+
activesupport (6.1.0)
|
44
65
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
|
-
i18n (>=
|
46
|
-
minitest (
|
47
|
-
tzinfo (~>
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
minitest (>= 5.1)
|
68
|
+
tzinfo (~> 2.0)
|
69
|
+
zeitwerk (~> 2.3)
|
48
70
|
ammeter (1.1.4)
|
49
71
|
activesupport (>= 3.0)
|
50
72
|
railties (>= 3.0)
|
51
73
|
rspec-rails (>= 2.2)
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
diff-lcs (1.3)
|
60
|
-
dry-configurable (0.11.5)
|
74
|
+
builder (3.2.4)
|
75
|
+
coderay (1.1.3)
|
76
|
+
concurrent-ruby (1.1.7)
|
77
|
+
crass (1.0.6)
|
78
|
+
database_cleaner (1.8.5)
|
79
|
+
diff-lcs (1.4.4)
|
80
|
+
dry-configurable (0.12.0)
|
61
81
|
concurrent-ruby (~> 1.0)
|
62
|
-
dry-core (~> 0.
|
63
|
-
|
64
|
-
dry-core (0.4.9)
|
82
|
+
dry-core (~> 0.5, >= 0.5.0)
|
83
|
+
dry-core (0.5.0)
|
65
84
|
concurrent-ruby (~> 1.0)
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
i18n (>= 1.6, < 1.8)
|
85
|
+
erubi (1.10.0)
|
86
|
+
faker (2.15.1)
|
87
|
+
i18n (>= 1.6, < 2)
|
70
88
|
globalid (0.4.2)
|
71
89
|
activesupport (>= 4.2.0)
|
72
|
-
i18n (1.
|
90
|
+
i18n (1.8.5)
|
73
91
|
concurrent-ruby (~> 1.0)
|
74
|
-
|
75
|
-
jetrockets-standard (1.0.4)
|
76
|
-
rubocop-rails (~> 2.3.2)
|
77
|
-
rubocop-rspec (~> 1.35.0)
|
78
|
-
standard (~> 0.1.4)
|
79
|
-
loofah (2.4.0)
|
92
|
+
loofah (2.8.0)
|
80
93
|
crass (~> 1.0.2)
|
81
94
|
nokogiri (>= 1.5.9)
|
82
95
|
mail (2.7.1)
|
83
96
|
mini_mime (>= 0.1.1)
|
84
|
-
|
97
|
+
marcel (0.3.3)
|
98
|
+
mimemagic (~> 0.3.2)
|
99
|
+
method_source (1.0.0)
|
100
|
+
mimemagic (0.3.5)
|
85
101
|
mini_mime (1.0.2)
|
86
|
-
mini_portile2 (2.
|
87
|
-
minitest (5.
|
88
|
-
nio4r (2.5.
|
89
|
-
nokogiri (1.
|
90
|
-
mini_portile2 (~> 2.
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
rack (2.0.8)
|
102
|
+
mini_portile2 (2.5.0)
|
103
|
+
minitest (5.14.2)
|
104
|
+
nio4r (2.5.4)
|
105
|
+
nokogiri (1.11.1)
|
106
|
+
mini_portile2 (~> 2.5.0)
|
107
|
+
racc (~> 1.4)
|
108
|
+
pg (1.2.3)
|
109
|
+
pry (0.13.1)
|
110
|
+
coderay (~> 1.1)
|
111
|
+
method_source (~> 1.0)
|
112
|
+
racc (1.5.2)
|
113
|
+
rack (2.2.3)
|
99
114
|
rack-test (1.1.0)
|
100
115
|
rack (>= 1.0, < 3)
|
101
|
-
rails (
|
102
|
-
actioncable (=
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
116
|
+
rails (6.1.0)
|
117
|
+
actioncable (= 6.1.0)
|
118
|
+
actionmailbox (= 6.1.0)
|
119
|
+
actionmailer (= 6.1.0)
|
120
|
+
actionpack (= 6.1.0)
|
121
|
+
actiontext (= 6.1.0)
|
122
|
+
actionview (= 6.1.0)
|
123
|
+
activejob (= 6.1.0)
|
124
|
+
activemodel (= 6.1.0)
|
125
|
+
activerecord (= 6.1.0)
|
126
|
+
activestorage (= 6.1.0)
|
127
|
+
activesupport (= 6.1.0)
|
128
|
+
bundler (>= 1.15.0)
|
129
|
+
railties (= 6.1.0)
|
112
130
|
sprockets-rails (>= 2.0.0)
|
113
131
|
rails-dom-testing (2.0.3)
|
114
132
|
activesupport (>= 4.2.0)
|
115
133
|
nokogiri (>= 1.6)
|
116
134
|
rails-html-sanitizer (1.3.0)
|
117
135
|
loofah (~> 2.3)
|
118
|
-
railties (
|
119
|
-
actionpack (=
|
120
|
-
activesupport (=
|
136
|
+
railties (6.1.0)
|
137
|
+
actionpack (= 6.1.0)
|
138
|
+
activesupport (= 6.1.0)
|
121
139
|
method_source
|
122
140
|
rake (>= 0.8.7)
|
123
|
-
thor (
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
rspec-
|
128
|
-
rspec-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
rspec-expectations (3.9.0)
|
141
|
+
thor (~> 1.0)
|
142
|
+
rake (13.0.3)
|
143
|
+
rspec (3.10.0)
|
144
|
+
rspec-core (~> 3.10.0)
|
145
|
+
rspec-expectations (~> 3.10.0)
|
146
|
+
rspec-mocks (~> 3.10.0)
|
147
|
+
rspec-core (3.10.1)
|
148
|
+
rspec-support (~> 3.10.0)
|
149
|
+
rspec-expectations (3.10.1)
|
133
150
|
diff-lcs (>= 1.2.0, < 2.0)
|
134
|
-
rspec-support (~> 3.
|
135
|
-
rspec-mocks (3.
|
151
|
+
rspec-support (~> 3.10.0)
|
152
|
+
rspec-mocks (3.10.0)
|
136
153
|
diff-lcs (>= 1.2.0, < 2.0)
|
137
|
-
rspec-support (~> 3.
|
138
|
-
rspec-rails (
|
139
|
-
actionpack (>=
|
140
|
-
activesupport (>=
|
141
|
-
railties (>=
|
142
|
-
rspec-core (~> 3.
|
143
|
-
rspec-expectations (~> 3.
|
144
|
-
rspec-mocks (~> 3.
|
145
|
-
rspec-support (~> 3.
|
146
|
-
rspec-support (3.
|
147
|
-
|
148
|
-
jaro_winkler (~> 1.5.1)
|
149
|
-
parallel (~> 1.10)
|
150
|
-
parser (>= 2.6)
|
151
|
-
rainbow (>= 2.2.2, < 4.0)
|
152
|
-
ruby-progressbar (~> 1.7)
|
153
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
154
|
-
rubocop-performance (1.5.1)
|
155
|
-
rubocop (>= 0.71.0)
|
156
|
-
rubocop-rails (2.3.2)
|
157
|
-
rack (>= 1.1)
|
158
|
-
rubocop (>= 0.72.0)
|
159
|
-
rubocop-rspec (1.35.0)
|
160
|
-
rubocop (>= 0.60.0)
|
161
|
-
ruby-progressbar (1.10.1)
|
162
|
-
sprockets (4.0.0)
|
154
|
+
rspec-support (~> 3.10.0)
|
155
|
+
rspec-rails (4.0.2)
|
156
|
+
actionpack (>= 4.2)
|
157
|
+
activesupport (>= 4.2)
|
158
|
+
railties (>= 4.2)
|
159
|
+
rspec-core (~> 3.10)
|
160
|
+
rspec-expectations (~> 3.10)
|
161
|
+
rspec-mocks (~> 3.10)
|
162
|
+
rspec-support (~> 3.10)
|
163
|
+
rspec-support (3.10.1)
|
164
|
+
sprockets (4.0.2)
|
163
165
|
concurrent-ruby (~> 1.0)
|
164
166
|
rack (> 1, < 3)
|
165
|
-
sprockets-rails (3.2.
|
167
|
+
sprockets-rails (3.2.2)
|
166
168
|
actionpack (>= 4.0)
|
167
169
|
activesupport (>= 4.0)
|
168
170
|
sprockets (>= 3.0.0)
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
timecop (0.9.1)
|
175
|
-
tzinfo (1.2.5)
|
176
|
-
thread_safe (~> 0.1)
|
177
|
-
unicode-display_width (1.6.0)
|
178
|
-
websocket-driver (0.6.5)
|
171
|
+
thor (1.0.1)
|
172
|
+
timecop (0.9.2)
|
173
|
+
tzinfo (2.0.4)
|
174
|
+
concurrent-ruby (~> 1.0)
|
175
|
+
websocket-driver (0.7.3)
|
179
176
|
websocket-extensions (>= 0.1.0)
|
180
177
|
websocket-extensions (0.1.5)
|
178
|
+
zeitwerk (2.4.2)
|
181
179
|
|
182
180
|
PLATFORMS
|
183
181
|
ruby
|
184
182
|
|
185
183
|
DEPENDENCIES
|
186
|
-
activerecord (
|
184
|
+
activerecord (>= 5.2.4, < 6.2)
|
187
185
|
ammeter (>= 1.1)
|
188
186
|
bundler (>= 1.3)
|
189
187
|
database_cleaner (>= 1.7)
|
190
188
|
faker (>= 2.8)
|
191
|
-
jetrockets-standard (~> 1.0.1)
|
192
189
|
metka!
|
193
190
|
pg (>= 1.1)
|
194
191
|
pry (>= 0.12.2)
|