metka 2.0.3 → 2.3.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/lint_code.yml +21 -0
- data/.github/workflows/lint_docs.yml +57 -0
- data/.github/workflows/specs.yml +86 -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 +127 -129
- data/README.md +115 -49
- data/forspell.dict +7 -0
- data/gemfiles/rails52.gemfile +1 -1
- data/gemfiles/rails6.gemfile +2 -2
- data/gemfiles/rails61.gemfile +6 -0
- data/gemfiles/railsmain.gemfile +5 -0
- data/gemfiles/rubocop.gemfile +4 -0
- data/lib/metka/generic_parser.rb +2 -2
- data/lib/metka/model.rb +6 -6
- 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 +16 -22
- data/.github/workflows/continuous-integration-workflow.yml +0 -11
- data/.travis.yml +0 -35
- data/gemfiles/rails5.gemfile +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a797dd1f5463da09cc8557a9fafe6351ef8a99caa810ab7f9c3193af424eb080
|
4
|
+
data.tar.gz: dd3524033fc92df97a2e2f7c9c4730005c01d9786f384dd846586c63b57d205c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '09ffcb13bd0856fee54d9ab6e03c9f9dfc2d43bacf4dbf0b9d7aac1e6a0515b280c0ad2694f878cabc9c2be64227f60a8835f3a83406ceae6d1d19cf4460864f'
|
7
|
+
data.tar.gz: 4624b4eb0de21a81b60ae6bf2e747c6e48c039e03a07ae20a3323c6933e84cb8f7c2aaf5d4687b8e14f448aa1b64abc00ebe87172e72eae731614c8d10c8e36d
|
@@ -0,0 +1,21 @@
|
|
1
|
+
name: Lint Code
|
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
|
@@ -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,86 @@
|
|
1
|
+
name: Specs
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
pull_request:
|
8
|
+
schedule:
|
9
|
+
- cron: "0 3 * * 1" # Every monday at 3 AM
|
10
|
+
|
11
|
+
jobs:
|
12
|
+
rspec:
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
env:
|
15
|
+
BUNDLE_JOBS: 4
|
16
|
+
BUNDLE_RETRY: 3
|
17
|
+
CI: true
|
18
|
+
RAILS_ENV: test
|
19
|
+
DATABASE_URL: postgres://postgres:postgres@localhost:5432
|
20
|
+
strategy:
|
21
|
+
fail-fast: false
|
22
|
+
matrix:
|
23
|
+
ruby: ["2.7"]
|
24
|
+
postgres: ["12"]
|
25
|
+
gemfile: [
|
26
|
+
"gemfiles/rails61.gemfile"
|
27
|
+
]
|
28
|
+
fx: ["false"]
|
29
|
+
include:
|
30
|
+
- ruby: "3.0"
|
31
|
+
postgres: "13"
|
32
|
+
gemfile: "gemfiles/railsmain.gemfile"
|
33
|
+
fx: "false"
|
34
|
+
- ruby: "2.6"
|
35
|
+
postgres: "12"
|
36
|
+
gemfile: "gemfiles/rails61.gemfile"
|
37
|
+
fx: "false"
|
38
|
+
- ruby: "2.6"
|
39
|
+
postgres: "12"
|
40
|
+
gemfile: "gemfiles/rails6.gemfile"
|
41
|
+
fx: "false"
|
42
|
+
- ruby: "2.5"
|
43
|
+
postgres: "11"
|
44
|
+
gemfile: "gemfiles/rails52.gemfile"
|
45
|
+
fx: "false"
|
46
|
+
services:
|
47
|
+
postgres:
|
48
|
+
image: postgres:${{ matrix.postgres }}
|
49
|
+
ports: ["5432:5432"]
|
50
|
+
env:
|
51
|
+
POSTGRES_PASSWORD: postgres
|
52
|
+
options: >-
|
53
|
+
--health-cmd pg_isready
|
54
|
+
--health-interval 10s
|
55
|
+
--health-timeout 5s
|
56
|
+
--health-retries 5
|
57
|
+
steps:
|
58
|
+
- uses: actions/checkout@v2
|
59
|
+
- uses: actions/cache@v1
|
60
|
+
with:
|
61
|
+
path: /home/runner/bundle
|
62
|
+
key: bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-${{ hashFiles(matrix.gemfile) }}-${{ hashFiles('**/*.gemspec') }}
|
63
|
+
restore-keys: |
|
64
|
+
bundle-${{ matrix.ruby }}-${{ matrix.gemfile }}-
|
65
|
+
- name: Install system deps
|
66
|
+
run: |
|
67
|
+
sudo apt-get update
|
68
|
+
sudo apt-get -yqq install libpq-dev
|
69
|
+
- uses: ruby/setup-ruby@v1
|
70
|
+
with:
|
71
|
+
ruby-version: ${{ matrix.ruby }}
|
72
|
+
- name: Bundle install
|
73
|
+
run: |
|
74
|
+
bundle config path /home/runner/bundle
|
75
|
+
bundle config --global gemfile ${{ matrix.gemfile }}
|
76
|
+
bundle install
|
77
|
+
bundle update
|
78
|
+
- name: Prepare test database
|
79
|
+
run: |
|
80
|
+
bundle exec rake dummy:db:create
|
81
|
+
bundle exec rake dummy:db:migrate:reset
|
82
|
+
- name: Run RSpec
|
83
|
+
env:
|
84
|
+
USE_FX: ${{ matrix.fx }}
|
85
|
+
run: |
|
86
|
+
bundle exec rspec -f d --force-color
|
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,196 +1,194 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
metka (2.
|
4
|
+
metka (2.3.1)
|
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.3.1)
|
12
|
+
actionpack (= 6.1.3.1)
|
13
|
+
activesupport (= 6.1.3.1)
|
13
14
|
nio4r (~> 2.0)
|
14
|
-
websocket-driver (
|
15
|
-
|
16
|
-
actionpack (
|
17
|
-
|
18
|
-
|
15
|
+
websocket-driver (>= 0.6.1)
|
16
|
+
actionmailbox (6.1.3.1)
|
17
|
+
actionpack (= 6.1.3.1)
|
18
|
+
activejob (= 6.1.3.1)
|
19
|
+
activerecord (= 6.1.3.1)
|
20
|
+
activestorage (= 6.1.3.1)
|
21
|
+
activesupport (= 6.1.3.1)
|
22
|
+
mail (>= 2.7.1)
|
23
|
+
actionmailer (6.1.3.1)
|
24
|
+
actionpack (= 6.1.3.1)
|
25
|
+
actionview (= 6.1.3.1)
|
26
|
+
activejob (= 6.1.3.1)
|
27
|
+
activesupport (= 6.1.3.1)
|
19
28
|
mail (~> 2.5, >= 2.5.4)
|
20
29
|
rails-dom-testing (~> 2.0)
|
21
|
-
actionpack (6.
|
22
|
-
actionview (= 6.
|
23
|
-
activesupport (= 6.
|
24
|
-
rack (~> 2.0, >= 2.0.
|
30
|
+
actionpack (6.1.3.1)
|
31
|
+
actionview (= 6.1.3.1)
|
32
|
+
activesupport (= 6.1.3.1)
|
33
|
+
rack (~> 2.0, >= 2.0.9)
|
25
34
|
rack-test (>= 0.6.3)
|
26
35
|
rails-dom-testing (~> 2.0)
|
27
36
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
28
|
-
|
29
|
-
|
37
|
+
actiontext (6.1.3.1)
|
38
|
+
actionpack (= 6.1.3.1)
|
39
|
+
activerecord (= 6.1.3.1)
|
40
|
+
activestorage (= 6.1.3.1)
|
41
|
+
activesupport (= 6.1.3.1)
|
42
|
+
nokogiri (>= 1.8.5)
|
43
|
+
actionview (6.1.3.1)
|
44
|
+
activesupport (= 6.1.3.1)
|
30
45
|
builder (~> 3.1)
|
31
46
|
erubi (~> 1.4)
|
32
47
|
rails-dom-testing (~> 2.0)
|
33
48
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
34
|
-
activejob (
|
35
|
-
activesupport (
|
49
|
+
activejob (6.1.3.1)
|
50
|
+
activesupport (= 6.1.3.1)
|
36
51
|
globalid (>= 0.3.6)
|
37
|
-
activemodel (
|
38
|
-
activesupport (
|
39
|
-
activerecord (
|
40
|
-
activemodel (=
|
41
|
-
activesupport (
|
42
|
-
|
43
|
-
|
52
|
+
activemodel (6.1.3.1)
|
53
|
+
activesupport (= 6.1.3.1)
|
54
|
+
activerecord (6.1.3.1)
|
55
|
+
activemodel (= 6.1.3.1)
|
56
|
+
activesupport (= 6.1.3.1)
|
57
|
+
activestorage (6.1.3.1)
|
58
|
+
actionpack (= 6.1.3.1)
|
59
|
+
activejob (= 6.1.3.1)
|
60
|
+
activerecord (= 6.1.3.1)
|
61
|
+
activesupport (= 6.1.3.1)
|
62
|
+
marcel (~> 1.0.0)
|
63
|
+
mini_mime (~> 1.0.2)
|
64
|
+
activesupport (6.1.3.1)
|
44
65
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
45
|
-
i18n (>=
|
46
|
-
minitest (
|
47
|
-
tzinfo (~>
|
48
|
-
zeitwerk (~> 2.
|
49
|
-
ammeter (1.1.
|
66
|
+
i18n (>= 1.6, < 2)
|
67
|
+
minitest (>= 5.1)
|
68
|
+
tzinfo (~> 2.0)
|
69
|
+
zeitwerk (~> 2.3)
|
70
|
+
ammeter (1.1.5)
|
50
71
|
activesupport (>= 3.0)
|
51
72
|
railties (>= 3.0)
|
52
73
|
rspec-rails (>= 2.2)
|
53
|
-
arel (8.0.0)
|
54
|
-
ast (2.4.0)
|
55
74
|
builder (3.2.4)
|
56
|
-
coderay (1.1.
|
57
|
-
concurrent-ruby (1.1.
|
75
|
+
coderay (1.1.3)
|
76
|
+
concurrent-ruby (1.1.8)
|
58
77
|
crass (1.0.6)
|
59
|
-
database_cleaner (
|
60
|
-
|
61
|
-
|
78
|
+
database_cleaner (2.0.1)
|
79
|
+
database_cleaner-active_record (~> 2.0.0)
|
80
|
+
database_cleaner-active_record (2.0.0)
|
81
|
+
activerecord (>= 5.a)
|
82
|
+
database_cleaner-core (~> 2.0.0)
|
83
|
+
database_cleaner-core (2.0.1)
|
84
|
+
diff-lcs (1.4.4)
|
85
|
+
dry-configurable (0.12.1)
|
62
86
|
concurrent-ruby (~> 1.0)
|
63
|
-
dry-core (~> 0.
|
64
|
-
|
65
|
-
dry-core (0.4.9)
|
87
|
+
dry-core (~> 0.5, >= 0.5.0)
|
88
|
+
dry-core (0.5.0)
|
66
89
|
concurrent-ruby (~> 1.0)
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
i18n (>= 1.6, < 1.8)
|
90
|
+
erubi (1.10.0)
|
91
|
+
faker (2.17.0)
|
92
|
+
i18n (>= 1.6, < 2)
|
71
93
|
globalid (0.4.2)
|
72
94
|
activesupport (>= 4.2.0)
|
73
|
-
i18n (1.
|
95
|
+
i18n (1.8.10)
|
74
96
|
concurrent-ruby (~> 1.0)
|
75
|
-
|
76
|
-
jetrockets-standard (1.0.4)
|
77
|
-
rubocop-rails (~> 2.3.2)
|
78
|
-
rubocop-rspec (~> 1.35.0)
|
79
|
-
standard (~> 0.1.4)
|
80
|
-
loofah (2.7.0)
|
97
|
+
loofah (2.9.0)
|
81
98
|
crass (~> 1.0.2)
|
82
99
|
nokogiri (>= 1.5.9)
|
83
100
|
mail (2.7.1)
|
84
101
|
mini_mime (>= 0.1.1)
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
102
|
+
marcel (1.0.0)
|
103
|
+
method_source (1.0.0)
|
104
|
+
mini_mime (1.0.3)
|
105
|
+
mini_portile2 (2.5.0)
|
106
|
+
minitest (5.14.4)
|
107
|
+
nio4r (2.5.7)
|
108
|
+
nokogiri (1.11.2)
|
109
|
+
mini_portile2 (~> 2.5.0)
|
110
|
+
racc (~> 1.4)
|
111
|
+
pg (1.2.3)
|
112
|
+
pry (0.14.0)
|
113
|
+
coderay (~> 1.1)
|
114
|
+
method_source (~> 1.0)
|
115
|
+
racc (1.5.2)
|
99
116
|
rack (2.2.3)
|
100
117
|
rack-test (1.1.0)
|
101
118
|
rack (>= 1.0, < 3)
|
102
|
-
rails (
|
103
|
-
actioncable (=
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
119
|
+
rails (6.1.3.1)
|
120
|
+
actioncable (= 6.1.3.1)
|
121
|
+
actionmailbox (= 6.1.3.1)
|
122
|
+
actionmailer (= 6.1.3.1)
|
123
|
+
actionpack (= 6.1.3.1)
|
124
|
+
actiontext (= 6.1.3.1)
|
125
|
+
actionview (= 6.1.3.1)
|
126
|
+
activejob (= 6.1.3.1)
|
127
|
+
activemodel (= 6.1.3.1)
|
128
|
+
activerecord (= 6.1.3.1)
|
129
|
+
activestorage (= 6.1.3.1)
|
130
|
+
activesupport (= 6.1.3.1)
|
131
|
+
bundler (>= 1.15.0)
|
132
|
+
railties (= 6.1.3.1)
|
113
133
|
sprockets-rails (>= 2.0.0)
|
114
134
|
rails-dom-testing (2.0.3)
|
115
135
|
activesupport (>= 4.2.0)
|
116
136
|
nokogiri (>= 1.6)
|
117
137
|
rails-html-sanitizer (1.3.0)
|
118
138
|
loofah (~> 2.3)
|
119
|
-
railties (
|
120
|
-
actionpack (
|
121
|
-
activesupport (
|
139
|
+
railties (6.1.3.1)
|
140
|
+
actionpack (= 6.1.3.1)
|
141
|
+
activesupport (= 6.1.3.1)
|
122
142
|
method_source
|
123
143
|
rake (>= 0.8.7)
|
124
|
-
thor (
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
rspec-
|
129
|
-
rspec-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
rspec-expectations (3.9.0)
|
144
|
+
thor (~> 1.0)
|
145
|
+
rake (13.0.3)
|
146
|
+
rspec (3.10.0)
|
147
|
+
rspec-core (~> 3.10.0)
|
148
|
+
rspec-expectations (~> 3.10.0)
|
149
|
+
rspec-mocks (~> 3.10.0)
|
150
|
+
rspec-core (3.10.1)
|
151
|
+
rspec-support (~> 3.10.0)
|
152
|
+
rspec-expectations (3.10.1)
|
134
153
|
diff-lcs (>= 1.2.0, < 2.0)
|
135
|
-
rspec-support (~> 3.
|
136
|
-
rspec-mocks (3.
|
154
|
+
rspec-support (~> 3.10.0)
|
155
|
+
rspec-mocks (3.10.2)
|
137
156
|
diff-lcs (>= 1.2.0, < 2.0)
|
138
|
-
rspec-support (~> 3.
|
139
|
-
rspec-rails (
|
140
|
-
actionpack (>=
|
141
|
-
activesupport (>=
|
142
|
-
railties (>=
|
143
|
-
rspec-core (~> 3.
|
144
|
-
rspec-expectations (~> 3.
|
145
|
-
rspec-mocks (~> 3.
|
146
|
-
rspec-support (~> 3.
|
147
|
-
rspec-support (3.
|
148
|
-
rubocop (0.75.1)
|
149
|
-
jaro_winkler (~> 1.5.1)
|
150
|
-
parallel (~> 1.10)
|
151
|
-
parser (>= 2.6)
|
152
|
-
rainbow (>= 2.2.2, < 4.0)
|
153
|
-
ruby-progressbar (~> 1.7)
|
154
|
-
unicode-display_width (>= 1.4.0, < 1.7)
|
155
|
-
rubocop-performance (1.5.1)
|
156
|
-
rubocop (>= 0.71.0)
|
157
|
-
rubocop-rails (2.3.2)
|
158
|
-
rack (>= 1.1)
|
159
|
-
rubocop (>= 0.72.0)
|
160
|
-
rubocop-rspec (1.35.0)
|
161
|
-
rubocop (>= 0.60.0)
|
162
|
-
ruby-progressbar (1.10.1)
|
157
|
+
rspec-support (~> 3.10.0)
|
158
|
+
rspec-rails (5.0.1)
|
159
|
+
actionpack (>= 5.2)
|
160
|
+
activesupport (>= 5.2)
|
161
|
+
railties (>= 5.2)
|
162
|
+
rspec-core (~> 3.10)
|
163
|
+
rspec-expectations (~> 3.10)
|
164
|
+
rspec-mocks (~> 3.10)
|
165
|
+
rspec-support (~> 3.10)
|
166
|
+
rspec-support (3.10.2)
|
163
167
|
sprockets (4.0.2)
|
164
168
|
concurrent-ruby (~> 1.0)
|
165
169
|
rack (> 1, < 3)
|
166
|
-
sprockets-rails (3.2.
|
170
|
+
sprockets-rails (3.2.2)
|
167
171
|
actionpack (>= 4.0)
|
168
172
|
activesupport (>= 4.0)
|
169
173
|
sprockets (>= 3.0.0)
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
timecop (0.9.1)
|
176
|
-
tzinfo (1.2.7)
|
177
|
-
thread_safe (~> 0.1)
|
178
|
-
unicode-display_width (1.6.0)
|
179
|
-
websocket-driver (0.6.5)
|
174
|
+
thor (1.1.0)
|
175
|
+
timecop (0.9.4)
|
176
|
+
tzinfo (2.0.4)
|
177
|
+
concurrent-ruby (~> 1.0)
|
178
|
+
websocket-driver (0.7.3)
|
180
179
|
websocket-extensions (>= 0.1.0)
|
181
180
|
websocket-extensions (0.1.5)
|
182
|
-
zeitwerk (2.4.
|
181
|
+
zeitwerk (2.4.2)
|
183
182
|
|
184
183
|
PLATFORMS
|
185
184
|
ruby
|
186
185
|
|
187
186
|
DEPENDENCIES
|
188
|
-
activerecord (
|
187
|
+
activerecord (>= 5.2.4, < 6.2)
|
189
188
|
ammeter (>= 1.1)
|
190
189
|
bundler (>= 1.3)
|
191
190
|
database_cleaner (>= 1.7)
|
192
191
|
faker (>= 2.8)
|
193
|
-
jetrockets-standard (~> 1.0.1)
|
194
192
|
metka!
|
195
193
|
pg (>= 1.1)
|
196
194
|
pry (>= 0.12.2)
|