-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalidation.log
More file actions
154 lines (147 loc) · 8.4 KB
/
Copy pathvalidation.log
File metadata and controls
154 lines (147 loc) · 8.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
$ gem install bundler
Successfully installed bundler-4.0.17
1 gem installed
$ bundle install
Fetching gem metadata from https://rubygems.org/..........
Resolving dependencies...
Fetching rake 13.4.2
Installing rake 13.4.2
Fetching ast 2.4.3
Fetching json 2.21.2
Fetching language_server-protocol 3.17.0.6
Fetching lint_roller 1.1.0
Fetching minitest 5.25.4
Fetching parallel 1.28.0
Installing json 2.21.2 with native extensions
Fetching racc 1.8.1
Fetching parser 3.3.12.0
Fetching prism 1.9.0
Fetching rainbow 3.1.1
Installing racc 1.8.1 with native extensions
Fetching regexp_parser 2.12.0
Installing prism 1.9.0 with native extensions
Fetching rubocop-ast 1.50.0
Fetching ruby-progressbar 1.13.0
Fetching unicode-emoji 4.2.0
Fetching unicode-display_width 3.2.0
Fetching rubocop 1.75.8
Using bootprint 0.3.0 (was 0.2.0) from gemspec at `.` and installing its executables
Installing ast 2.4.3
Installing lint_roller 1.1.0
Installing language_server-protocol 3.17.0.6
Installing minitest 5.25.4
Installing parallel 1.28.0
Installing rainbow 3.1.1
Installing parser 3.3.12.0
Installing regexp_parser 2.12.0
Installing rubocop-ast 1.50.0
Installing ruby-progressbar 1.13.0
Installing unicode-emoji 4.2.0
Installing unicode-display_width 3.2.0
Installing rubocop 1.75.8
Bundle complete! 4 Gemfile dependencies, 18 gems now installed.
Bundled gems are installed into `./vendor/bundle`
1 installed gem you directly depend on is looking for funding.
Run `bundle fund` for details
$ bundle exec rake check
Run options: --seed 58885
# Running:
............................................................
Finished in 3.089863s, 19.4183 runs/s, 206.1580 assertions/s.
60 runs, 637 assertions, 0 failures, 0 errors, 0 skips
RuboCop failed!
Running RuboCop...
Inspecting 58 files
.......................W..................C...............
Offenses:
lib/bootprint/matrix.rb:6:31: W: Lint/StructNewOverride: :values member overrides Struct#values and it may be unexpected.
Entry = Struct.new(:path, :values, :missing, :consensus, :outliers, keyword_init: true) do
^^^^^^^
test/matrix_test.rb:7:39: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
local = snapshot("environment" => {"name" => "local", "runtime" => {"ruby_version" => "3.3.8"}})
^
test/matrix_test.rb:7:72: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
local = snapshot("environment" => {"name" => "local", "runtime" => {"ruby_version" => "3.3.8"}})
^
test/matrix_test.rb:7:98: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
local = snapshot("environment" => {"name" => "local", "runtime" => {"ruby_version" => "3.3.8"}})
^
test/matrix_test.rb:7:99: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
local = snapshot("environment" => {"name" => "local", "runtime" => {"ruby_version" => "3.3.8"}})
^
test/matrix_test.rb:8:41: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
staging = snapshot("environment" => {"name" => "staging", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:8:76: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
staging = snapshot("environment" => {"name" => "staging", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:8:102: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
staging = snapshot("environment" => {"name" => "staging", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:8:103: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
staging = snapshot("environment" => {"name" => "staging", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:9:44: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
production = snapshot("environment" => {"name" => "production", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:9:82: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
production = snapshot("environment" => {"name" => "production", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:9:108: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
production = snapshot("environment" => {"name" => "production", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:9:109: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
production = snapshot("environment" => {"name" => "production", "runtime" => {"ruby_version" => "3.4.2"}})
^
test/matrix_test.rb:23:16: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
"one" => {"runtime" => {"jit" => "yjit"}},
^
test/matrix_test.rb:23:30: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
"one" => {"runtime" => {"jit" => "yjit"}},
^
test/matrix_test.rb:23:46: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
"one" => {"runtime" => {"jit" => "yjit"}},
^
test/matrix_test.rb:23:47: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
"one" => {"runtime" => {"jit" => "yjit"}},
^
test/matrix_test.rb:24:16: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
"two" => {"runtime" => {}},
^
test/matrix_test.rb:24:32: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
"two" => {"runtime" => {}},
^
test/matrix_test.rb:25:18: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
"three" => {"runtime" => {"jit" => "yjit"}}
^
test/matrix_test.rb:25:32: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
"three" => {"runtime" => {"jit" => "yjit"}}
^
test/matrix_test.rb:25:48: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
"three" => {"runtime" => {"jit" => "yjit"}}
^
test/matrix_test.rb:25:49: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
"three" => {"runtime" => {"jit" => "yjit"}}
^
test/matrix_test.rb:41:38: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
left = snapshot("environment" => {"name" => "left"})
^
test/matrix_test.rb:41:55: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
left = snapshot("environment" => {"name" => "left"})
^
test/matrix_test.rb:42:39: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside { missing.
right = snapshot("environment" => {"name" => "right"})
^
test/matrix_test.rb:42:57: C: [Correctable] Layout/SpaceInsideHashLiteralBraces: Space inside } missing.
right = snapshot("environment" => {"name" => "right"})
^
58 files inspected, 27 offenses detected, 26 offenses autocorrectable
$ gem build bootprint.gemspec
Successfully built RubyGem
Name: bootprint
Version: 0.3.0
File: bootprint-0.3.0.gem
$ installed gem smoke test
Successfully installed bootprint-0.3.0
1 gem installed
bootprint 0.3.0