vehiculum_audit 0.0.1 → 0.0.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/gem-push.yml +0 -2
- data/.gitignore +4 -4
- data/.rspec_status +1 -1
- data/CODE_OF_CONDUCT.md +76 -0
- data/README.md +7 -2
- data/lib/configs/lefthook.yml +16 -0
- data/lib/tasks/vehiculum_audit.rake +2 -16
- data/lib/vehiculum_audit/version.rb +1 -1
- data/vehiculum_audit.gemspec +2 -1
- metadata +22 -7
- data/Gemfile.lock +0 -255
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b21fd31b0363eb8c476661a26b233c37d7b47f44f3dd0b98d1a054b361735c27
|
|
4
|
+
data.tar.gz: 3ed0a6eba7aa6dee43f5af26bda084ab6328c0252c7fe1aa70fb4d9b4d1ec09f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 31eed19b1f376291ab6d1f1d0649bb975d643ee8904a6da4d1fc856132de0b5881ca76283e8cb985b0cc93b82e2d95507d06306b2dbdebde8b0f3412b2c14007
|
|
7
|
+
data.tar.gz: 5eb5a1696c7c4c4729d5f2b3676d6998efa3100564c6abf49780192509c7210ad0d89f50c2aeb17cbbf6eaa57f32b99c152e4f84f1b48e4cfaf12fc3e3af3eb8
|
data/.gitignore
CHANGED
|
@@ -45,12 +45,12 @@ build-iPhoneSimulator/
|
|
|
45
45
|
|
|
46
46
|
# for a library or gem, you might want to ignore these files since the code is
|
|
47
47
|
# intended to run in multiple environments; otherwise, check them in:
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
48
|
+
Gemfile.lock
|
|
49
|
+
.ruby-version
|
|
50
|
+
.ruby-gemset
|
|
51
51
|
|
|
52
52
|
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
|
53
53
|
.rvmrc
|
|
54
54
|
|
|
55
55
|
# Used by RuboCop. Remote config files pulled in from inherit_from directive.
|
|
56
|
-
|
|
56
|
+
.rubocop-https?--*
|
data/.rspec_status
CHANGED
data/CODE_OF_CONDUCT.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
|
2
|
+
|
|
3
|
+
## Our Pledge
|
|
4
|
+
|
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
|
8
|
+
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
|
9
|
+
level of experience, education, socio-economic status, nationality, personal
|
|
10
|
+
appearance, race, religion, or sexual identity and orientation.
|
|
11
|
+
|
|
12
|
+
## Our Standards
|
|
13
|
+
|
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
|
15
|
+
include:
|
|
16
|
+
|
|
17
|
+
* Using welcoming and inclusive language
|
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
|
19
|
+
* Gracefully accepting constructive criticism
|
|
20
|
+
* Focusing on what is best for the community
|
|
21
|
+
* Showing empathy towards other community members
|
|
22
|
+
|
|
23
|
+
Examples of unacceptable behavior by participants include:
|
|
24
|
+
|
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
|
26
|
+
advances
|
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
|
28
|
+
* Public or private harassment
|
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
|
30
|
+
address, without explicit permission
|
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
|
32
|
+
professional setting
|
|
33
|
+
|
|
34
|
+
## Our Responsibilities
|
|
35
|
+
|
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
|
38
|
+
response to any instances of unacceptable behavior.
|
|
39
|
+
|
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
|
44
|
+
threatening, offensive, or harmful.
|
|
45
|
+
|
|
46
|
+
## Scope
|
|
47
|
+
|
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
|
49
|
+
when an individual is representing the project or its community. Examples of
|
|
50
|
+
representing a project or community include using an official project e-mail
|
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
|
53
|
+
further defined and clarified by project maintainers.
|
|
54
|
+
|
|
55
|
+
## Enforcement
|
|
56
|
+
|
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
|
58
|
+
reported by contacting the project team at tech-services@vehiculum.de. All
|
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
|
63
|
+
|
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
|
66
|
+
members of the project's leadership.
|
|
67
|
+
|
|
68
|
+
## Attribution
|
|
69
|
+
|
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
|
71
|
+
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
|
|
72
|
+
|
|
73
|
+
[homepage]: https://www.contributor-covenant.org
|
|
74
|
+
|
|
75
|
+
For answers to common questions about this code of conduct, see
|
|
76
|
+
https://www.contributor-covenant.org/faq
|
data/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
#
|
|
1
|
+
# vehiculum_audit
|
|
2
|
+
|
|
3
|
+

|
|
2
4
|
|
|
3
5
|
A set of tools for convenient technical analysis of web applications built with Ruby and Ruby on Rails.
|
|
4
6
|
|
|
@@ -7,12 +9,15 @@ A set of tools for convenient technical analysis of web applications built with
|
|
|
7
9
|
- Bundler-audit - a patch-level verification for Bundler
|
|
8
10
|
- Fasterer - a gem that helps Rubies go faster
|
|
9
11
|
- Reek - a code smell detector
|
|
10
|
-
-
|
|
12
|
+
- Vehiculum-codestyle - shared Ruby style guide used by Vehiculum Tech team. It includes Rubocop as dependency.
|
|
13
|
+
- SimpleCov - Code coverage for Ruby 1.9+ with a powerful configuration library and automatic merging of coverage across test suites
|
|
11
14
|
|
|
12
15
|
The tools are configured for displaying output to the console in a single format which results in better readability and no need to switch between the tools.
|
|
13
16
|
|
|
14
17
|
The complete list of the tools and links to official repositories can be found in vehiculum_audit.gemspec file.
|
|
15
18
|
|
|
19
|
+
Additionally, you can access code coverage report by opening `index.html` in the `/coverage` derectory.
|
|
20
|
+
|
|
16
21
|
## Installation
|
|
17
22
|
|
|
18
23
|
Add this line to your application's Gemfile:
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
pre-commit:
|
|
2
|
+
parallel: true
|
|
3
|
+
commands:
|
|
4
|
+
rubocop:
|
|
5
|
+
files: git diff --name-only --staged
|
|
6
|
+
glob: "*.rb"
|
|
7
|
+
run: rubocop --force-exclusion {files}
|
|
8
|
+
reek:
|
|
9
|
+
files: git diff --name-only --staged
|
|
10
|
+
glob: "*.rb"
|
|
11
|
+
run: reek --force-exclusion {files}
|
|
12
|
+
fasterer:
|
|
13
|
+
run: fasterer
|
|
14
|
+
test:
|
|
15
|
+
run: bundle exec rspec
|
|
16
|
+
|
|
@@ -6,7 +6,8 @@ namespace :vehiculum_audit do
|
|
|
6
6
|
{ gem: 'RSpec', file: '.rspec' },
|
|
7
7
|
{ gem: 'Rubocop', file: '.rubocop.yml' },
|
|
8
8
|
{ gem: 'Reek', file: '.reek.yml' },
|
|
9
|
-
{ gem: 'Fasterer', file: '.fasterer.yml' }
|
|
9
|
+
{ gem: 'Fasterer', file: '.fasterer.yml' },
|
|
10
|
+
{ gem: 'Lefthook', file: 'lefthook.yml' }
|
|
10
11
|
]
|
|
11
12
|
|
|
12
13
|
configs.each do |config|
|
|
@@ -78,21 +79,6 @@ namespace :vehiculum_audit do
|
|
|
78
79
|
end
|
|
79
80
|
|
|
80
81
|
task :info do
|
|
81
|
-
puts
|
|
82
|
-
|
|
83
|
-
box 'Important!', color: :red do
|
|
84
|
-
<<~INFO
|
|
85
|
-
You need to install the following utilites:
|
|
86
|
-
|
|
87
|
-
On MacOS:
|
|
88
|
-
|
|
89
|
-
$ brew install graphviz
|
|
90
|
-
|
|
91
|
-
On Linux:
|
|
92
|
-
|
|
93
|
-
$ apt-get install graphviz
|
|
94
|
-
INFO
|
|
95
|
-
end
|
|
96
82
|
|
|
97
83
|
box 'How to use'
|
|
98
84
|
|
data/vehiculum_audit.gemspec
CHANGED
|
@@ -33,12 +33,13 @@ Gem::Specification.new do |spec|
|
|
|
33
33
|
spec.add_dependency 'colorize' # https://github.com/fazibear/colorize
|
|
34
34
|
spec.add_dependency 'fasterer' # https://github.com/DamirSvrtan/fasterer
|
|
35
35
|
spec.add_dependency 'hirb' # https://github.com/cldwalker/hirb
|
|
36
|
+
spec.add_dependency 'lefthook' # https://github.com/Arkweid/lefthook
|
|
36
37
|
spec.add_dependency 'pry-byebug' # https://github.com/deivid-rodriguez/pry-byebug
|
|
37
38
|
spec.add_dependency 'pry-rails' # https://github.com/rweng/pry-rails
|
|
38
39
|
spec.add_dependency 'pry-rescue' # https://github.com/ConradIrwin/pry-rescue
|
|
39
40
|
spec.add_dependency 'pry-stack_explorer' # https://github.com/pry/pry-stack_explorer
|
|
40
41
|
spec.add_dependency 'reek' # https://github.com/troessner/reek
|
|
41
|
-
spec.add_dependency 'vehiculum-codestyle'
|
|
42
|
+
spec.add_dependency 'vehiculum-codestyle' # https://github.com/Arkweid/lefthook
|
|
42
43
|
spec.add_dependency 'simplecov' # https://github.com/colszowka/simplecov
|
|
43
44
|
spec.add_dependency 'traceroute' # https://github.com/amatsuda/traceroute
|
|
44
45
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: vehiculum_audit
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vehiculum Tech Team
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -164,6 +164,20 @@ dependencies:
|
|
|
164
164
|
- - ">="
|
|
165
165
|
- !ruby/object:Gem::Version
|
|
166
166
|
version: '0'
|
|
167
|
+
- !ruby/object:Gem::Dependency
|
|
168
|
+
name: lefthook
|
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
|
170
|
+
requirements:
|
|
171
|
+
- - ">="
|
|
172
|
+
- !ruby/object:Gem::Version
|
|
173
|
+
version: '0'
|
|
174
|
+
type: :runtime
|
|
175
|
+
prerelease: false
|
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
177
|
+
requirements:
|
|
178
|
+
- - ">="
|
|
179
|
+
- !ruby/object:Gem::Version
|
|
180
|
+
version: '0'
|
|
167
181
|
- !ruby/object:Gem::Dependency
|
|
168
182
|
name: pry-byebug
|
|
169
183
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -238,16 +252,16 @@ dependencies:
|
|
|
238
252
|
name: vehiculum-codestyle
|
|
239
253
|
requirement: !ruby/object:Gem::Requirement
|
|
240
254
|
requirements:
|
|
241
|
-
- - "
|
|
255
|
+
- - ">="
|
|
242
256
|
- !ruby/object:Gem::Version
|
|
243
|
-
version: 0
|
|
257
|
+
version: '0'
|
|
244
258
|
type: :runtime
|
|
245
259
|
prerelease: false
|
|
246
260
|
version_requirements: !ruby/object:Gem::Requirement
|
|
247
261
|
requirements:
|
|
248
|
-
- - "
|
|
262
|
+
- - ">="
|
|
249
263
|
- !ruby/object:Gem::Version
|
|
250
|
-
version: 0
|
|
264
|
+
version: '0'
|
|
251
265
|
- !ruby/object:Gem::Dependency
|
|
252
266
|
name: simplecov
|
|
253
267
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -287,8 +301,8 @@ files:
|
|
|
287
301
|
- ".gitignore"
|
|
288
302
|
- ".rspec_status"
|
|
289
303
|
- ".rubocop.yml"
|
|
304
|
+
- CODE_OF_CONDUCT.md
|
|
290
305
|
- Gemfile
|
|
291
|
-
- Gemfile.lock
|
|
292
306
|
- LICENSE
|
|
293
307
|
- README.md
|
|
294
308
|
- Rakefile
|
|
@@ -298,6 +312,7 @@ files:
|
|
|
298
312
|
- lib/configs/.reek.yml
|
|
299
313
|
- lib/configs/.rspec
|
|
300
314
|
- lib/configs/.rubocop.yml
|
|
315
|
+
- lib/configs/lefthook.yml
|
|
301
316
|
- lib/tasks/vehiculum_audit.rake
|
|
302
317
|
- lib/vehiculum_audit.rb
|
|
303
318
|
- lib/vehiculum_audit/railtie.rb
|
data/Gemfile.lock
DELETED
|
@@ -1,255 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
vehiculum_audit (0.0.1)
|
|
5
|
-
awesome_print
|
|
6
|
-
benchmark-ips
|
|
7
|
-
brakeman
|
|
8
|
-
bullet
|
|
9
|
-
bundler-audit
|
|
10
|
-
colorize
|
|
11
|
-
fasterer
|
|
12
|
-
hirb
|
|
13
|
-
pry-byebug
|
|
14
|
-
pry-rails
|
|
15
|
-
pry-rescue
|
|
16
|
-
pry-stack_explorer
|
|
17
|
-
reek
|
|
18
|
-
simplecov
|
|
19
|
-
traceroute
|
|
20
|
-
vehiculum-codestyle (~> 0.0.8)
|
|
21
|
-
|
|
22
|
-
GEM
|
|
23
|
-
remote: https://rubygems.org/
|
|
24
|
-
specs:
|
|
25
|
-
actioncable (6.0.3.1)
|
|
26
|
-
actionpack (= 6.0.3.1)
|
|
27
|
-
nio4r (~> 2.0)
|
|
28
|
-
websocket-driver (>= 0.6.1)
|
|
29
|
-
actionmailbox (6.0.3.1)
|
|
30
|
-
actionpack (= 6.0.3.1)
|
|
31
|
-
activejob (= 6.0.3.1)
|
|
32
|
-
activerecord (= 6.0.3.1)
|
|
33
|
-
activestorage (= 6.0.3.1)
|
|
34
|
-
activesupport (= 6.0.3.1)
|
|
35
|
-
mail (>= 2.7.1)
|
|
36
|
-
actionmailer (6.0.3.1)
|
|
37
|
-
actionpack (= 6.0.3.1)
|
|
38
|
-
actionview (= 6.0.3.1)
|
|
39
|
-
activejob (= 6.0.3.1)
|
|
40
|
-
mail (~> 2.5, >= 2.5.4)
|
|
41
|
-
rails-dom-testing (~> 2.0)
|
|
42
|
-
actionpack (6.0.3.1)
|
|
43
|
-
actionview (= 6.0.3.1)
|
|
44
|
-
activesupport (= 6.0.3.1)
|
|
45
|
-
rack (~> 2.0, >= 2.0.8)
|
|
46
|
-
rack-test (>= 0.6.3)
|
|
47
|
-
rails-dom-testing (~> 2.0)
|
|
48
|
-
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
|
49
|
-
actiontext (6.0.3.1)
|
|
50
|
-
actionpack (= 6.0.3.1)
|
|
51
|
-
activerecord (= 6.0.3.1)
|
|
52
|
-
activestorage (= 6.0.3.1)
|
|
53
|
-
activesupport (= 6.0.3.1)
|
|
54
|
-
nokogiri (>= 1.8.5)
|
|
55
|
-
actionview (6.0.3.1)
|
|
56
|
-
activesupport (= 6.0.3.1)
|
|
57
|
-
builder (~> 3.1)
|
|
58
|
-
erubi (~> 1.4)
|
|
59
|
-
rails-dom-testing (~> 2.0)
|
|
60
|
-
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
|
61
|
-
activejob (6.0.3.1)
|
|
62
|
-
activesupport (= 6.0.3.1)
|
|
63
|
-
globalid (>= 0.3.6)
|
|
64
|
-
activemodel (6.0.3.1)
|
|
65
|
-
activesupport (= 6.0.3.1)
|
|
66
|
-
activerecord (6.0.3.1)
|
|
67
|
-
activemodel (= 6.0.3.1)
|
|
68
|
-
activesupport (= 6.0.3.1)
|
|
69
|
-
activestorage (6.0.3.1)
|
|
70
|
-
actionpack (= 6.0.3.1)
|
|
71
|
-
activejob (= 6.0.3.1)
|
|
72
|
-
activerecord (= 6.0.3.1)
|
|
73
|
-
marcel (~> 0.3.1)
|
|
74
|
-
activesupport (6.0.3.1)
|
|
75
|
-
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
76
|
-
i18n (>= 0.7, < 2)
|
|
77
|
-
minitest (~> 5.1)
|
|
78
|
-
tzinfo (~> 1.1)
|
|
79
|
-
zeitwerk (~> 2.2, >= 2.2.2)
|
|
80
|
-
ast (2.4.1)
|
|
81
|
-
awesome_print (1.8.0)
|
|
82
|
-
benchmark-ips (2.8.2)
|
|
83
|
-
binding_of_caller (0.8.0)
|
|
84
|
-
debug_inspector (>= 0.0.1)
|
|
85
|
-
brakeman (4.8.2)
|
|
86
|
-
builder (3.2.4)
|
|
87
|
-
bullet (6.1.0)
|
|
88
|
-
activesupport (>= 3.0.0)
|
|
89
|
-
uniform_notifier (~> 1.11)
|
|
90
|
-
bundler-audit (0.6.1)
|
|
91
|
-
bundler (>= 1.2.0, < 3)
|
|
92
|
-
thor (~> 0.18)
|
|
93
|
-
byebug (11.1.3)
|
|
94
|
-
coderay (1.1.3)
|
|
95
|
-
colorize (0.8.1)
|
|
96
|
-
concurrent-ruby (1.1.6)
|
|
97
|
-
crass (1.0.6)
|
|
98
|
-
debug_inspector (0.0.3)
|
|
99
|
-
diff-lcs (1.3)
|
|
100
|
-
docile (1.3.2)
|
|
101
|
-
erubi (1.9.0)
|
|
102
|
-
fasterer (0.8.3)
|
|
103
|
-
colorize (~> 0.7)
|
|
104
|
-
ruby_parser (>= 3.14.1)
|
|
105
|
-
globalid (0.4.2)
|
|
106
|
-
activesupport (>= 4.2.0)
|
|
107
|
-
hirb (0.7.3)
|
|
108
|
-
i18n (1.8.3)
|
|
109
|
-
concurrent-ruby (~> 1.0)
|
|
110
|
-
interception (0.5)
|
|
111
|
-
jaro_winkler (1.5.4)
|
|
112
|
-
kwalify (0.7.2)
|
|
113
|
-
loofah (2.5.0)
|
|
114
|
-
crass (~> 1.0.2)
|
|
115
|
-
nokogiri (>= 1.5.9)
|
|
116
|
-
mail (2.7.1)
|
|
117
|
-
mini_mime (>= 0.1.1)
|
|
118
|
-
marcel (0.3.3)
|
|
119
|
-
mimemagic (~> 0.3.2)
|
|
120
|
-
method_source (1.0.0)
|
|
121
|
-
mimemagic (0.3.5)
|
|
122
|
-
mini_mime (1.0.2)
|
|
123
|
-
mini_portile2 (2.4.0)
|
|
124
|
-
minitest (5.14.1)
|
|
125
|
-
nio4r (2.5.2)
|
|
126
|
-
nokogiri (1.10.9)
|
|
127
|
-
mini_portile2 (~> 2.4.0)
|
|
128
|
-
parallel (1.19.1)
|
|
129
|
-
parser (2.7.1.3)
|
|
130
|
-
ast (~> 2.4.0)
|
|
131
|
-
pry (0.13.1)
|
|
132
|
-
coderay (~> 1.1)
|
|
133
|
-
method_source (~> 1.0)
|
|
134
|
-
pry-byebug (3.9.0)
|
|
135
|
-
byebug (~> 11.0)
|
|
136
|
-
pry (~> 0.13.0)
|
|
137
|
-
pry-rails (0.3.9)
|
|
138
|
-
pry (>= 0.10.4)
|
|
139
|
-
pry-rescue (1.5.1)
|
|
140
|
-
interception (>= 0.5)
|
|
141
|
-
pry (>= 0.12.0)
|
|
142
|
-
pry-stack_explorer (0.5.1)
|
|
143
|
-
binding_of_caller (~> 0.7)
|
|
144
|
-
pry (~> 0.13)
|
|
145
|
-
psych (3.1.0)
|
|
146
|
-
rack (2.2.2)
|
|
147
|
-
rack-test (1.1.0)
|
|
148
|
-
rack (>= 1.0, < 3)
|
|
149
|
-
rails (6.0.3.1)
|
|
150
|
-
actioncable (= 6.0.3.1)
|
|
151
|
-
actionmailbox (= 6.0.3.1)
|
|
152
|
-
actionmailer (= 6.0.3.1)
|
|
153
|
-
actionpack (= 6.0.3.1)
|
|
154
|
-
actiontext (= 6.0.3.1)
|
|
155
|
-
actionview (= 6.0.3.1)
|
|
156
|
-
activejob (= 6.0.3.1)
|
|
157
|
-
activemodel (= 6.0.3.1)
|
|
158
|
-
activerecord (= 6.0.3.1)
|
|
159
|
-
activestorage (= 6.0.3.1)
|
|
160
|
-
activesupport (= 6.0.3.1)
|
|
161
|
-
bundler (>= 1.3.0)
|
|
162
|
-
railties (= 6.0.3.1)
|
|
163
|
-
sprockets-rails (>= 2.0.0)
|
|
164
|
-
rails-dom-testing (2.0.3)
|
|
165
|
-
activesupport (>= 4.2.0)
|
|
166
|
-
nokogiri (>= 1.6)
|
|
167
|
-
rails-html-sanitizer (1.3.0)
|
|
168
|
-
loofah (~> 2.3)
|
|
169
|
-
railties (6.0.3.1)
|
|
170
|
-
actionpack (= 6.0.3.1)
|
|
171
|
-
activesupport (= 6.0.3.1)
|
|
172
|
-
method_source
|
|
173
|
-
rake (>= 0.8.7)
|
|
174
|
-
thor (>= 0.20.3, < 2.0)
|
|
175
|
-
rainbow (3.0.0)
|
|
176
|
-
rake (13.0.1)
|
|
177
|
-
reek (6.0.1)
|
|
178
|
-
kwalify (~> 0.7.0)
|
|
179
|
-
parser (>= 2.5.0.0, < 2.8, != 2.5.1.1)
|
|
180
|
-
psych (~> 3.1.0)
|
|
181
|
-
rainbow (>= 2.0, < 4.0)
|
|
182
|
-
rexml (3.2.4)
|
|
183
|
-
rspec (3.9.0)
|
|
184
|
-
rspec-core (~> 3.9.0)
|
|
185
|
-
rspec-expectations (~> 3.9.0)
|
|
186
|
-
rspec-mocks (~> 3.9.0)
|
|
187
|
-
rspec-core (3.9.2)
|
|
188
|
-
rspec-support (~> 3.9.3)
|
|
189
|
-
rspec-expectations (3.9.2)
|
|
190
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
191
|
-
rspec-support (~> 3.9.0)
|
|
192
|
-
rspec-mocks (3.9.1)
|
|
193
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
194
|
-
rspec-support (~> 3.9.0)
|
|
195
|
-
rspec-support (3.9.3)
|
|
196
|
-
rubocop (0.82.0)
|
|
197
|
-
jaro_winkler (~> 1.5.1)
|
|
198
|
-
parallel (~> 1.10)
|
|
199
|
-
parser (>= 2.7.0.1)
|
|
200
|
-
rainbow (>= 2.2.2, < 4.0)
|
|
201
|
-
rexml
|
|
202
|
-
ruby-progressbar (~> 1.7)
|
|
203
|
-
unicode-display_width (>= 1.4.0, < 2.0)
|
|
204
|
-
rubocop-performance (1.5.2)
|
|
205
|
-
rubocop (>= 0.71.0)
|
|
206
|
-
rubocop-rails (2.5.2)
|
|
207
|
-
activesupport
|
|
208
|
-
rack (>= 1.1)
|
|
209
|
-
rubocop (>= 0.72.0)
|
|
210
|
-
rubocop-rspec (1.39.0)
|
|
211
|
-
rubocop (>= 0.68.1)
|
|
212
|
-
ruby-progressbar (1.10.1)
|
|
213
|
-
ruby_parser (3.14.2)
|
|
214
|
-
sexp_processor (~> 4.9)
|
|
215
|
-
sexp_processor (4.15.0)
|
|
216
|
-
simplecov (0.18.5)
|
|
217
|
-
docile (~> 1.1)
|
|
218
|
-
simplecov-html (~> 0.11)
|
|
219
|
-
simplecov-html (0.12.2)
|
|
220
|
-
sprockets (4.0.2)
|
|
221
|
-
concurrent-ruby (~> 1.0)
|
|
222
|
-
rack (> 1, < 3)
|
|
223
|
-
sprockets-rails (3.2.1)
|
|
224
|
-
actionpack (>= 4.0)
|
|
225
|
-
activesupport (>= 4.0)
|
|
226
|
-
sprockets (>= 3.0.0)
|
|
227
|
-
thor (0.20.3)
|
|
228
|
-
thread_safe (0.3.6)
|
|
229
|
-
traceroute (0.8.1)
|
|
230
|
-
rails (>= 3.0.0)
|
|
231
|
-
tzinfo (1.2.7)
|
|
232
|
-
thread_safe (~> 0.1)
|
|
233
|
-
unicode-display_width (1.7.0)
|
|
234
|
-
uniform_notifier (1.13.0)
|
|
235
|
-
vehiculum-codestyle (0.0.8)
|
|
236
|
-
rubocop (= 0.82.0)
|
|
237
|
-
rubocop-performance (= 1.5.2)
|
|
238
|
-
rubocop-rails (= 2.5.2)
|
|
239
|
-
rubocop-rspec (= 1.39.0)
|
|
240
|
-
websocket-driver (0.7.2)
|
|
241
|
-
websocket-extensions (>= 0.1.0)
|
|
242
|
-
websocket-extensions (0.1.5)
|
|
243
|
-
zeitwerk (2.3.0)
|
|
244
|
-
|
|
245
|
-
PLATFORMS
|
|
246
|
-
ruby
|
|
247
|
-
|
|
248
|
-
DEPENDENCIES
|
|
249
|
-
bundler (~> 2.1.2)
|
|
250
|
-
rake
|
|
251
|
-
rspec
|
|
252
|
-
vehiculum_audit!
|
|
253
|
-
|
|
254
|
-
BUNDLED WITH
|
|
255
|
-
2.1.2
|