Start running Rails from the main branch #16
9 changed files with 28 additions and 23 deletions
5
.rubocop.yml
Normal file
5
.rubocop.yml
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
# Omakase Ruby styling for Rails
|
||||||
|
inherit_gem:
|
||||||
|
rubocop-rails-omakase: rubocop.yml
|
||||||
|
|
||||||
|
# Your own specialized rules go here
|
2
Gemfile
2
Gemfile
|
@ -19,7 +19,7 @@ group :development, :test do
|
||||||
end
|
end
|
||||||
|
|
||||||
group :development do
|
group :development do
|
||||||
gem "standard"
|
gem "rubocop-rails-omakase", require: false
|
||||||
gem "web-console"
|
gem "web-console"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
28
Gemfile.lock
28
Gemfile.lock
|
@ -142,7 +142,6 @@ GEM
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
json (2.7.2)
|
json (2.7.2)
|
||||||
language_server-protocol (3.17.0.3)
|
language_server-protocol (3.17.0.3)
|
||||||
lint_roller (1.1.0)
|
|
||||||
logger (1.6.0)
|
logger (1.6.0)
|
||||||
loofah (2.22.0)
|
loofah (2.22.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
|
@ -218,9 +217,22 @@ GEM
|
||||||
unicode-display_width (>= 2.4.0, < 3.0)
|
unicode-display_width (>= 2.4.0, < 3.0)
|
||||||
rubocop-ast (1.31.3)
|
rubocop-ast (1.31.3)
|
||||||
parser (>= 3.3.1.0)
|
parser (>= 3.3.1.0)
|
||||||
|
rubocop-minitest (0.35.0)
|
||||||
|
rubocop (>= 1.61, < 2.0)
|
||||||
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
rubocop-performance (1.21.1)
|
rubocop-performance (1.21.1)
|
||||||
rubocop (>= 1.48.1, < 2.0)
|
rubocop (>= 1.48.1, < 2.0)
|
||||||
rubocop-ast (>= 1.31.1, < 2.0)
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
|
rubocop-rails (2.25.0)
|
||||||
|
activesupport (>= 4.2.0)
|
||||||
|
rack (>= 1.1)
|
||||||
|
rubocop (>= 1.33.0, < 2.0)
|
||||||
|
rubocop-ast (>= 1.31.1, < 2.0)
|
||||||
|
rubocop-rails-omakase (1.0.0)
|
||||||
|
rubocop
|
||||||
|
rubocop-minitest
|
||||||
|
rubocop-performance
|
||||||
|
rubocop-rails
|
||||||
ruby-progressbar (1.13.0)
|
ruby-progressbar (1.13.0)
|
||||||
rubyzip (2.3.2)
|
rubyzip (2.3.2)
|
||||||
selenium-webdriver (4.10.0)
|
selenium-webdriver (4.10.0)
|
||||||
|
@ -236,18 +248,6 @@ GEM
|
||||||
sprockets (>= 3.0.0)
|
sprockets (>= 3.0.0)
|
||||||
sqlite3 (2.0.2-arm64-darwin)
|
sqlite3 (2.0.2-arm64-darwin)
|
||||||
sqlite3 (2.0.2-x86_64-linux-gnu)
|
sqlite3 (2.0.2-x86_64-linux-gnu)
|
||||||
standard (1.37.0)
|
|
||||||
language_server-protocol (~> 3.17.0.2)
|
|
||||||
lint_roller (~> 1.0)
|
|
||||||
rubocop (~> 1.64.0)
|
|
||||||
standard-custom (~> 1.0.0)
|
|
||||||
standard-performance (~> 1.4)
|
|
||||||
standard-custom (1.0.2)
|
|
||||||
lint_roller (~> 1.0)
|
|
||||||
rubocop (~> 1.50)
|
|
||||||
standard-performance (1.4.0)
|
|
||||||
lint_roller (~> 1.1)
|
|
||||||
rubocop-performance (~> 1.21.0)
|
|
||||||
stimulus-rails (1.3.3)
|
stimulus-rails (1.3.3)
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
stringio (3.1.1)
|
stringio (3.1.1)
|
||||||
|
@ -296,10 +296,10 @@ DEPENDENCIES
|
||||||
jbuilder
|
jbuilder
|
||||||
puma
|
puma
|
||||||
rails!
|
rails!
|
||||||
|
rubocop-rails-omakase
|
||||||
selenium-webdriver
|
selenium-webdriver
|
||||||
sprockets-rails
|
sprockets-rails
|
||||||
sqlite3
|
sqlite3
|
||||||
standard
|
|
||||||
stimulus-rails
|
stimulus-rails
|
||||||
tailwindcss-rails (~> 2.0)
|
tailwindcss-rails (~> 2.0)
|
||||||
turbo-rails
|
turbo-rails
|
||||||
|
|
Loading…
Reference in a new issue