vehiculum_audit 0.0.2 → 0.0.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f70957400246b792259a019f4266ff0c21f757bd64a7d7c1ebba0fe8b618a9c3
4
- data.tar.gz: fc19d4b67d958f69e78786207a1c31e9c98cdc37939347b71b5524a7520880a0
3
+ metadata.gz: af779af60b22b0d5305f61bd9e99f74f91c91801be7e16fc1cb935475d20f811
4
+ data.tar.gz: '0698552a47586f1d4e1b32d821537de98d1a490dd24745557770a1c984eee590'
5
5
  SHA512:
6
- metadata.gz: 56994e40a7afa4f21c8af8f3907b51556e597525e0fae8a2533dc3d88524a0480a626959916e8ff6b2e034855a04f89357069b938b9076bd53851515da9c7be8
7
- data.tar.gz: 18896c5d87b6d292527ec25309dac4e598b7ae354631f134be8fa15baba77b20a35afa0c27091141498648d03e3892fd925819e0f42cfa3b05153bdc0b1fff5d
6
+ metadata.gz: 11daea81df43b13b9f31453cb5bdd4258bda922e10a7d55e481ca9df9dc7b5a922b9ede36ed039d9eca7651334fd9af2665d4c824a45162425e43d335890bd20
7
+ data.tar.gz: 7f9a49ffdc600310f5b7be8a32623a179f2987847923e475bd52fc660bad1924b5c3650841d495ef0575149ed69aecf64420ad473bf3ec9055b51e79d71596e8
@@ -3,8 +3,6 @@ name: vehiculum_audit
3
3
  on:
4
4
  push:
5
5
  branches: [ master ]
6
- pull_request:
7
- branches: [ master ]
8
6
 
9
7
  jobs:
10
8
  build:
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
- # Gemfile.lock
49
- # .ruby-version
50
- # .ruby-gemset
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
- # .rubocop-https?--*
56
+ .rubocop-https?--*
@@ -1,3 +1,3 @@
1
1
  example_id | status | run_time |
2
2
  ----------------------------------- | ------ | --------------- |
3
- ./spec/vehiculum_audit_spec.rb[1:1] | passed | 0.00076 seconds |
3
+ ./spec/vehiculum_audit_spec.rb[1:1] | passed | 0.00045 seconds |
@@ -1,6 +1,5 @@
1
1
  require:
2
- - rubocop-minitest
3
- - rubocop-rake
2
+ - rubocop-performance
4
3
 
5
4
  inherit_gem:
6
5
  vehiculum-codestyle:
@@ -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,4 @@
1
- # vehiculum-audit
1
+ # vehiculum_audit
2
2
 
3
3
  ![vehiculum_audit](https://github.com/vehiculum-berlin/vehiculum_audit/workflows/vehiculum_audit/badge.svg?branch=master)
4
4
 
@@ -9,12 +9,15 @@ A set of tools for convenient technical analysis of web applications built with
9
9
  - Bundler-audit - a patch-level verification for Bundler
10
10
  - Fasterer - a gem that helps Rubies go faster
11
11
  - Reek - a code smell detector
12
- - RuboCop - a Ruby static code analyzer and code formatter
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
13
14
 
14
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.
15
16
 
16
17
  The complete list of the tools and links to official repositories can be found in vehiculum_audit.gemspec file.
17
18
 
19
+ Additionally, you can access code coverage report by opening `index.html` in the `/coverage` derectory.
20
+
18
21
  ## Installation
19
22
 
20
23
  Add this line to your application's Gemfile:
@@ -1,6 +1,5 @@
1
1
  require:
2
- - rubocop-minitest
3
- - rubocop-rake
2
+ - rubocop-performance
4
3
 
5
4
  inherit_gem:
6
5
  vehiculum-codestyle:
@@ -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|
@@ -77,22 +78,15 @@ namespace :vehiculum_audit do
77
78
  puts 'Done!'.green
78
79
  end
79
80
 
80
- 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:
81
+ task :install_lefthook do
82
+ print 'Finalising lefthook installation'
88
83
 
89
- $ brew install graphviz
84
+ system 'lefthook install -f'
90
85
 
91
- On Linux:
86
+ puts 'Done!'.green
87
+ end
92
88
 
93
- $ apt-get install graphviz
94
- INFO
95
- end
89
+ task :info do
96
90
 
97
91
  box 'How to use'
98
92
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module VehiculumAudit
4
- VERSION = '0.0.2'
4
+ VERSION = '0.0.7'
5
5
  end
@@ -33,12 +33,14 @@ 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', '~> 0.0.8'
42
+ spec.add_dependency 'rubocop-performance' # https://github.com/rubocop-hq/rubocop-performance
43
+ spec.add_dependency 'vehiculum-codestyle' # https://github.com/Arkweid/lefthook
42
44
  spec.add_dependency 'simplecov' # https://github.com/colszowka/simplecov
43
45
  spec.add_dependency 'traceroute' # https://github.com/amatsuda/traceroute
44
46
  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.2
4
+ version: 0.0.7
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 00:00:00.000000000 Z
11
+ date: 2020-07-15 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
@@ -234,20 +248,34 @@ dependencies:
234
248
  - - ">="
235
249
  - !ruby/object:Gem::Version
236
250
  version: '0'
251
+ - !ruby/object:Gem::Dependency
252
+ name: rubocop-performance
253
+ requirement: !ruby/object:Gem::Requirement
254
+ requirements:
255
+ - - ">="
256
+ - !ruby/object:Gem::Version
257
+ version: '0'
258
+ type: :runtime
259
+ prerelease: false
260
+ version_requirements: !ruby/object:Gem::Requirement
261
+ requirements:
262
+ - - ">="
263
+ - !ruby/object:Gem::Version
264
+ version: '0'
237
265
  - !ruby/object:Gem::Dependency
238
266
  name: vehiculum-codestyle
239
267
  requirement: !ruby/object:Gem::Requirement
240
268
  requirements:
241
- - - "~>"
269
+ - - ">="
242
270
  - !ruby/object:Gem::Version
243
- version: 0.0.8
271
+ version: '0'
244
272
  type: :runtime
245
273
  prerelease: false
246
274
  version_requirements: !ruby/object:Gem::Requirement
247
275
  requirements:
248
- - - "~>"
276
+ - - ">="
249
277
  - !ruby/object:Gem::Version
250
- version: 0.0.8
278
+ version: '0'
251
279
  - !ruby/object:Gem::Dependency
252
280
  name: simplecov
253
281
  requirement: !ruby/object:Gem::Requirement
@@ -287,8 +315,8 @@ files:
287
315
  - ".gitignore"
288
316
  - ".rspec_status"
289
317
  - ".rubocop.yml"
318
+ - CODE_OF_CONDUCT.md
290
319
  - Gemfile
291
- - Gemfile.lock
292
320
  - LICENSE
293
321
  - README.md
294
322
  - Rakefile
@@ -298,6 +326,7 @@ files:
298
326
  - lib/configs/.reek.yml
299
327
  - lib/configs/.rspec
300
328
  - lib/configs/.rubocop.yml
329
+ - lib/configs/lefthook.yml
301
330
  - lib/tasks/vehiculum_audit.rake
302
331
  - lib/vehiculum_audit.rb
303
332
  - lib/vehiculum_audit/railtie.rb
@@ -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