Skip to content

Commit a1d6782

Browse files
committed
Updating project files
1 parent 9e0a4e9 commit a1d6782

4 files changed

Lines changed: 49 additions & 10 deletions

File tree

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,6 @@ build-iPhoneSimulator/
6565
/spec/internal/log/
6666
/.rspec_status
6767
/pkg
68+
_site
69+
.sass-cache
70+
.jekyll-metadata

.rubocop-global.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
1+
require:
2+
- rubocop-magic_numbers
3+
14
plugins:
25
- rubocop-performance
6+
- rubocop-rails
37
- rubocop-rake
48
- rubocop-rspec
9+
- rubocop-thread_safety
510

611
AllCops:
712
DisplayCopNames: true

Gemfile

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,18 @@ gemspec
77
gem "net-imap", require: false
88
gem "net-pop", require: false
99
gem "net-smtp", require: false
10+
11+
group :development, :test do
12+
gem "fasterer"
13+
gem "pry-byebug"
14+
gem "rake"
15+
gem "reek"
16+
gem "rspec"
17+
gem "rubocop"
18+
gem "rubocop-magic_numbers"
19+
gem "rubocop-performance"
20+
gem "rubocop-rails"
21+
gem "rubocop-rake", "> 0.7.0" # as plugin
22+
gem "rubocop-rspec", "> 3.5.0" # as plugin
23+
gem "rubocop-thread_safety"
24+
end

Gemfile.lock

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ GEM
129129
cucumber-messages (22.0.0)
130130
cucumber-tag-expressions (6.1.2)
131131
date (3.4.1)
132-
diff-lcs (1.6.1)
132+
diff-lcs (1.6.2)
133133
drb (2.2.1)
134134
dry-configurable (1.3.0)
135135
dry-core (~> 1.1)
@@ -173,11 +173,11 @@ GEM
173173
pp (>= 0.6.0)
174174
rdoc (>= 4.0.0)
175175
reline (>= 0.4.2)
176-
json (2.11.3)
177-
language_server-protocol (3.17.0.4)
176+
json (2.12.0)
177+
language_server-protocol (3.17.0.5)
178178
lint_roller (1.1.0)
179179
logger (1.7.0)
180-
loofah (2.24.0)
180+
loofah (2.24.1)
181181
crass (~> 1.0.2)
182182
nokogiri (>= 1.12.0)
183183
mail (2.8.1)
@@ -217,7 +217,7 @@ GEM
217217
pry-byebug (3.11.0)
218218
byebug (~> 12.0)
219219
pry (>= 0.13, < 0.16)
220-
psych (5.2.4)
220+
psych (5.2.6)
221221
date
222222
stringio
223223
racc (1.8.1)
@@ -285,7 +285,7 @@ GEM
285285
diff-lcs (>= 1.2.0, < 2.0)
286286
rspec-support (~> 3.13.0)
287287
rspec-support (3.13.3)
288-
rubocop (1.75.5)
288+
rubocop (1.75.6)
289289
json (~> 2.3)
290290
language_server-protocol (~> 3.17.0.2)
291291
lint_roller (~> 1.1.0)
@@ -299,15 +299,28 @@ GEM
299299
rubocop-ast (1.44.1)
300300
parser (>= 3.3.7.2)
301301
prism (~> 1.4)
302+
rubocop-magic_numbers (0.5.0)
303+
parser
304+
rubocop
302305
rubocop-performance (1.25.0)
303306
lint_roller (~> 1.1)
304307
rubocop (>= 1.75.0, < 2.0)
305308
rubocop-ast (>= 1.38.0, < 2.0)
306-
rubocop-rake (0.6.0)
307-
rubocop (~> 1.0)
309+
rubocop-rails (2.31.0)
310+
activesupport (>= 4.2.0)
311+
lint_roller (~> 1.1)
312+
rack (>= 1.1)
313+
rubocop (>= 1.75.0, < 2.0)
314+
rubocop-ast (>= 1.38.0, < 2.0)
315+
rubocop-rake (0.7.1)
316+
lint_roller (~> 1.1)
317+
rubocop (>= 1.72.1)
308318
rubocop-rspec (3.6.0)
309319
lint_roller (~> 1.1)
310320
rubocop (~> 1.72, >= 1.72.1)
321+
rubocop-thread_safety (0.7.2)
322+
lint_roller (~> 1.1)
323+
rubocop (~> 1.72, >= 1.72.1)
311324
ruby-progressbar (1.13.0)
312325
ruby_parser (3.21.1)
313326
racc (~> 1.5)
@@ -354,9 +367,12 @@ DEPENDENCIES
354367
reek
355368
rspec
356369
rubocop
370+
rubocop-magic_numbers
357371
rubocop-performance
358-
rubocop-rake
359-
rubocop-rspec
372+
rubocop-rails
373+
rubocop-rake (> 0.7.0)
374+
rubocop-rspec (> 3.5.0)
375+
rubocop-thread_safety
360376
sqlite3
361377

362378
BUNDLED WITH

0 commit comments

Comments
 (0)