mirror of
https://github.com/kingomarnajjar/codespaces-rails.git
synced 2026-07-26 06:37:17 +10:00
Merge pull request #1 from github/joshaber/tweaks
Tweaks to make it work
This commit is contained in:
commit
a646440c5d
28 changed files with 78 additions and 0 deletions
4
Gemfile
4
Gemfile
|
|
@ -57,6 +57,10 @@ group :development do
|
||||||
# Use console on exceptions pages [https://github.com/rails/web-console]
|
# Use console on exceptions pages [https://github.com/rails/web-console]
|
||||||
gem "web-console"
|
gem "web-console"
|
||||||
|
|
||||||
|
gem "solargraph"
|
||||||
|
|
||||||
|
gem "erb_lint"
|
||||||
|
|
||||||
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
|
# Add speed badges [https://github.com/MiniProfiler/rack-mini-profiler]
|
||||||
# gem "rack-mini-profiler"
|
# gem "rack-mini-profiler"
|
||||||
|
|
||||||
|
|
|
||||||
70
Gemfile.lock
70
Gemfile.lock
|
|
@ -68,6 +68,17 @@ GEM
|
||||||
tzinfo (~> 2.0)
|
tzinfo (~> 2.0)
|
||||||
addressable (2.8.0)
|
addressable (2.8.0)
|
||||||
public_suffix (>= 2.0.2, < 5.0)
|
public_suffix (>= 2.0.2, < 5.0)
|
||||||
|
ast (2.4.2)
|
||||||
|
backport (1.2.0)
|
||||||
|
benchmark (0.1.1)
|
||||||
|
better_html (1.0.16)
|
||||||
|
actionview (>= 4.0)
|
||||||
|
activesupport (>= 4.0)
|
||||||
|
ast (~> 2.0)
|
||||||
|
erubi (~> 1.4)
|
||||||
|
html_tokenizer (~> 0.0.6)
|
||||||
|
parser (>= 2.4)
|
||||||
|
smart_properties
|
||||||
bindex (0.8.1)
|
bindex (0.8.1)
|
||||||
bootsnap (1.12.0)
|
bootsnap (1.12.0)
|
||||||
msgpack (~> 1.2)
|
msgpack (~> 1.2)
|
||||||
|
|
@ -87,10 +98,21 @@ GEM
|
||||||
debug (1.5.0)
|
debug (1.5.0)
|
||||||
irb (>= 1.3.6)
|
irb (>= 1.3.6)
|
||||||
reline (>= 0.2.7)
|
reline (>= 0.2.7)
|
||||||
|
diff-lcs (1.5.0)
|
||||||
digest (3.1.0)
|
digest (3.1.0)
|
||||||
|
e2mmap (0.1.0)
|
||||||
|
erb_lint (0.1.3)
|
||||||
|
activesupport
|
||||||
|
better_html (~> 1.0.7)
|
||||||
|
html_tokenizer
|
||||||
|
parser (>= 2.7.1.4)
|
||||||
|
rainbow
|
||||||
|
rubocop
|
||||||
|
smart_properties
|
||||||
erubi (1.10.0)
|
erubi (1.10.0)
|
||||||
globalid (1.0.0)
|
globalid (1.0.0)
|
||||||
activesupport (>= 5.0)
|
activesupport (>= 5.0)
|
||||||
|
html_tokenizer (0.0.7)
|
||||||
i18n (1.10.0)
|
i18n (1.10.0)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
importmap-rails (1.1.0)
|
importmap-rails (1.1.0)
|
||||||
|
|
@ -99,9 +121,15 @@ GEM
|
||||||
io-console (0.5.11)
|
io-console (0.5.11)
|
||||||
irb (1.4.1)
|
irb (1.4.1)
|
||||||
reline (>= 0.3.0)
|
reline (>= 0.3.0)
|
||||||
|
jaro_winkler (1.5.4)
|
||||||
jbuilder (2.11.5)
|
jbuilder (2.11.5)
|
||||||
actionview (>= 5.0.0)
|
actionview (>= 5.0.0)
|
||||||
activesupport (>= 5.0.0)
|
activesupport (>= 5.0.0)
|
||||||
|
json (2.5.1)
|
||||||
|
kramdown (2.4.0)
|
||||||
|
rexml
|
||||||
|
kramdown-parser-gfm (1.1.0)
|
||||||
|
kramdown (~> 2.0)
|
||||||
loofah (2.18.0)
|
loofah (2.18.0)
|
||||||
crass (~> 1.0.2)
|
crass (~> 1.0.2)
|
||||||
nokogiri (>= 1.5.9)
|
nokogiri (>= 1.5.9)
|
||||||
|
|
@ -130,6 +158,9 @@ GEM
|
||||||
nio4r (2.5.8)
|
nio4r (2.5.8)
|
||||||
nokogiri (1.13.6-x86_64-linux)
|
nokogiri (1.13.6-x86_64-linux)
|
||||||
racc (~> 1.4)
|
racc (~> 1.4)
|
||||||
|
parallel (1.22.1)
|
||||||
|
parser (3.1.2.0)
|
||||||
|
ast (~> 2.4.1)
|
||||||
public_suffix (4.0.7)
|
public_suffix (4.0.7)
|
||||||
puma (5.6.4)
|
puma (5.6.4)
|
||||||
nio4r (~> 2.0)
|
nio4r (~> 2.0)
|
||||||
|
|
@ -163,17 +194,49 @@ GEM
|
||||||
rake (>= 12.2)
|
rake (>= 12.2)
|
||||||
thor (~> 1.0)
|
thor (~> 1.0)
|
||||||
zeitwerk (~> 2.5)
|
zeitwerk (~> 2.5)
|
||||||
|
rainbow (3.1.1)
|
||||||
rake (13.0.6)
|
rake (13.0.6)
|
||||||
regexp_parser (2.5.0)
|
regexp_parser (2.5.0)
|
||||||
reline (0.3.1)
|
reline (0.3.1)
|
||||||
io-console (~> 0.5)
|
io-console (~> 0.5)
|
||||||
|
reverse_markdown (2.1.1)
|
||||||
|
nokogiri
|
||||||
rexml (3.2.5)
|
rexml (3.2.5)
|
||||||
|
rubocop (1.31.2)
|
||||||
|
json (~> 2.3)
|
||||||
|
parallel (~> 1.10)
|
||||||
|
parser (>= 3.1.0.0)
|
||||||
|
rainbow (>= 2.2.2, < 4.0)
|
||||||
|
regexp_parser (>= 1.8, < 3.0)
|
||||||
|
rexml (>= 3.2.5, < 4.0)
|
||||||
|
rubocop-ast (>= 1.18.0, < 2.0)
|
||||||
|
ruby-progressbar (~> 1.7)
|
||||||
|
unicode-display_width (>= 1.4.0, < 3.0)
|
||||||
|
rubocop-ast (1.19.1)
|
||||||
|
parser (>= 3.1.1.0)
|
||||||
|
ruby-progressbar (1.11.0)
|
||||||
rubyzip (2.3.2)
|
rubyzip (2.3.2)
|
||||||
selenium-webdriver (4.2.1)
|
selenium-webdriver (4.2.1)
|
||||||
childprocess (>= 0.5, < 5.0)
|
childprocess (>= 0.5, < 5.0)
|
||||||
rexml (~> 3.2, >= 3.2.5)
|
rexml (~> 3.2, >= 3.2.5)
|
||||||
rubyzip (>= 1.2.2, < 3.0)
|
rubyzip (>= 1.2.2, < 3.0)
|
||||||
websocket (~> 1.0)
|
websocket (~> 1.0)
|
||||||
|
smart_properties (1.17.0)
|
||||||
|
solargraph (0.45.0)
|
||||||
|
backport (~> 1.2)
|
||||||
|
benchmark
|
||||||
|
bundler (>= 1.17.2)
|
||||||
|
diff-lcs (~> 1.4)
|
||||||
|
e2mmap
|
||||||
|
jaro_winkler (~> 1.5)
|
||||||
|
kramdown (~> 2.3)
|
||||||
|
kramdown-parser-gfm (~> 1.1)
|
||||||
|
parser (~> 3.0)
|
||||||
|
reverse_markdown (>= 1.0.5, < 3)
|
||||||
|
rubocop (>= 0.52)
|
||||||
|
thor (~> 1.0)
|
||||||
|
tilt (~> 2.0)
|
||||||
|
yard (~> 0.9, >= 0.9.24)
|
||||||
sprockets (4.0.3)
|
sprockets (4.0.3)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
rack (> 1, < 3)
|
rack (> 1, < 3)
|
||||||
|
|
@ -186,6 +249,7 @@ GEM
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
strscan (3.0.3)
|
strscan (3.0.3)
|
||||||
thor (1.2.1)
|
thor (1.2.1)
|
||||||
|
tilt (2.0.10)
|
||||||
timeout (0.3.0)
|
timeout (0.3.0)
|
||||||
turbo-rails (1.1.1)
|
turbo-rails (1.1.1)
|
||||||
actionpack (>= 6.0.0)
|
actionpack (>= 6.0.0)
|
||||||
|
|
@ -193,6 +257,7 @@ GEM
|
||||||
railties (>= 6.0.0)
|
railties (>= 6.0.0)
|
||||||
tzinfo (2.0.4)
|
tzinfo (2.0.4)
|
||||||
concurrent-ruby (~> 1.0)
|
concurrent-ruby (~> 1.0)
|
||||||
|
unicode-display_width (1.8.0)
|
||||||
web-console (4.2.0)
|
web-console (4.2.0)
|
||||||
actionview (>= 6.0.0)
|
actionview (>= 6.0.0)
|
||||||
activemodel (>= 6.0.0)
|
activemodel (>= 6.0.0)
|
||||||
|
|
@ -202,12 +267,15 @@ GEM
|
||||||
nokogiri (~> 1.6)
|
nokogiri (~> 1.6)
|
||||||
rubyzip (>= 1.3.0)
|
rubyzip (>= 1.3.0)
|
||||||
selenium-webdriver (~> 4.0)
|
selenium-webdriver (~> 4.0)
|
||||||
|
webrick (1.7.0)
|
||||||
websocket (1.2.9)
|
websocket (1.2.9)
|
||||||
websocket-driver (0.7.5)
|
websocket-driver (0.7.5)
|
||||||
websocket-extensions (>= 0.1.0)
|
websocket-extensions (>= 0.1.0)
|
||||||
websocket-extensions (0.1.5)
|
websocket-extensions (0.1.5)
|
||||||
xpath (3.2.0)
|
xpath (3.2.0)
|
||||||
nokogiri (~> 1.8)
|
nokogiri (~> 1.8)
|
||||||
|
yard (0.9.28)
|
||||||
|
webrick (~> 1.7.0)
|
||||||
zeitwerk (2.5.4)
|
zeitwerk (2.5.4)
|
||||||
|
|
||||||
PLATFORMS
|
PLATFORMS
|
||||||
|
|
@ -217,11 +285,13 @@ DEPENDENCIES
|
||||||
bootsnap
|
bootsnap
|
||||||
capybara
|
capybara
|
||||||
debug
|
debug
|
||||||
|
erb_lint
|
||||||
importmap-rails
|
importmap-rails
|
||||||
jbuilder
|
jbuilder
|
||||||
puma (~> 5.0)
|
puma (~> 5.0)
|
||||||
rails (~> 7.0.3)
|
rails (~> 7.0.3)
|
||||||
selenium-webdriver
|
selenium-webdriver
|
||||||
|
solargraph
|
||||||
sprockets-rails
|
sprockets-rails
|
||||||
sqlite3 (~> 1.4)
|
sqlite3 (~> 1.4)
|
||||||
stimulus-rails
|
stimulus-rails
|
||||||
|
|
|
||||||
|
|
@ -59,6 +59,10 @@ Rails.application.configure do
|
||||||
# Suppress logger output for asset requests.
|
# Suppress logger output for asset requests.
|
||||||
config.assets.quiet = true
|
config.assets.quiet = true
|
||||||
|
|
||||||
|
config.action_dispatch.default_headers = {
|
||||||
|
'X-Frame-Options' => 'ALLOW-FROM githubpreview.dev'
|
||||||
|
}
|
||||||
|
|
||||||
# Raises error for missing translations.
|
# Raises error for missing translations.
|
||||||
# config.i18n.raise_on_missing_translations = true
|
# config.i18n.raise_on_missing_translations = true
|
||||||
|
|
||||||
|
|
|
||||||
BIN
vendor/cache/ast-2.4.2.gem
vendored
Normal file
BIN
vendor/cache/ast-2.4.2.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/backport-1.2.0.gem
vendored
Normal file
BIN
vendor/cache/backport-1.2.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/benchmark-0.1.1.gem
vendored
Normal file
BIN
vendor/cache/benchmark-0.1.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/better_html-1.0.16.gem
vendored
Normal file
BIN
vendor/cache/better_html-1.0.16.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/diff-lcs-1.5.0.gem
vendored
Normal file
BIN
vendor/cache/diff-lcs-1.5.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/e2mmap-0.1.0.gem
vendored
Normal file
BIN
vendor/cache/e2mmap-0.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/erb_lint-0.1.3.gem
vendored
Normal file
BIN
vendor/cache/erb_lint-0.1.3.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/html_tokenizer-0.0.7.gem
vendored
Normal file
BIN
vendor/cache/html_tokenizer-0.0.7.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/jaro_winkler-1.5.4.gem
vendored
Normal file
BIN
vendor/cache/jaro_winkler-1.5.4.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/json-2.5.1.gem
vendored
Normal file
BIN
vendor/cache/json-2.5.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/kramdown-2.4.0.gem
vendored
Normal file
BIN
vendor/cache/kramdown-2.4.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/kramdown-parser-gfm-1.1.0.gem
vendored
Normal file
BIN
vendor/cache/kramdown-parser-gfm-1.1.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/parallel-1.22.1.gem
vendored
Normal file
BIN
vendor/cache/parallel-1.22.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/parser-3.1.2.0.gem
vendored
Normal file
BIN
vendor/cache/parser-3.1.2.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/rainbow-3.1.1.gem
vendored
Normal file
BIN
vendor/cache/rainbow-3.1.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/reverse_markdown-2.1.1.gem
vendored
Normal file
BIN
vendor/cache/reverse_markdown-2.1.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/rubocop-1.31.2.gem
vendored
Normal file
BIN
vendor/cache/rubocop-1.31.2.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/rubocop-ast-1.19.1.gem
vendored
Normal file
BIN
vendor/cache/rubocop-ast-1.19.1.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/ruby-progressbar-1.11.0.gem
vendored
Normal file
BIN
vendor/cache/ruby-progressbar-1.11.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/smart_properties-1.17.0.gem
vendored
Normal file
BIN
vendor/cache/smart_properties-1.17.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/solargraph-0.45.0.gem
vendored
Normal file
BIN
vendor/cache/solargraph-0.45.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/tilt-2.0.10.gem
vendored
Normal file
BIN
vendor/cache/tilt-2.0.10.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/unicode-display_width-1.8.0.gem
vendored
Normal file
BIN
vendor/cache/unicode-display_width-1.8.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/webrick-1.7.0.gem
vendored
Normal file
BIN
vendor/cache/webrick-1.7.0.gem
vendored
Normal file
Binary file not shown.
BIN
vendor/cache/yard-0.9.28.gem
vendored
Normal file
BIN
vendor/cache/yard-0.9.28.gem
vendored
Normal file
Binary file not shown.
Loading…
Add table
Reference in a new issue