Skip to content

Commit

Permalink
Summer '22 Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jelaniwoods authored Jul 14, 2022
1 parent b415351 commit 0abb37d
Show file tree
Hide file tree
Showing 7 changed files with 145 additions and 104 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,5 @@ appdev/
node_modules
package-lock.json
core.chrome*
!vendor/
.theia/.ltici_apitoken.yml
vendor/bundle/*
!vendor/bundle/.keep
9 changes: 4 additions & 5 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
image: patrickmckernin/verybestdebug2022winter
image: patrickmckernin/photogram-associations-2022-spring

tasks:
- init: bin/setup
- before: |
bin/setup
ports:
- port: 3000
onOpen: open-preview
- port: 9515
- port: 9500-9999
onOpen: ignore


vscode:
extensions:
- vortizhe.simple-ruby-erb
- mbessey.vscode-rufo
- aliariff.vscode-erb-beautify

46 changes: 42 additions & 4 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,47 @@
{
"editor.tabSize": 2,
"editor.acceptSuggestionOnEnter": "off",
"editor.bracketPairColorization.enabled": false,
"editor.cursorSurroundingLines": 8,
"editor.dragAndDrop": false,
"editor.guides.bracketPairs": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.smoothScrolling": false,
"editor.wordBasedSuggestionsMode": "allDocuments",
"editor.wordWrap": "on",
"editor.wrappingIndent": "deepIndent",
"workbench.editor.closeOnFileDelete": true,
"workbench.fontAliasing": "auto",
"workbench.startupEditor": "none",
"workbench.tree.renderIndentGuides": "always",
"files.autoSaveDelay": 500,
"files.exclude": {
"**/.git": true,
".vscode": true,
".bundle": true,
},
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"screencastMode.onlyKeyboardShortcuts": true,
"screencastMode.verticalOffset": 10,
"explorer.compactFolders": false,
"explorer.incrementalNaming": "smart",
"html.format.endWithNewline": true,
"html.format.preserveNewLines": true,
"html.format.templating": true,
"terminal.integrated.altClickMovesCursor": true,
"[erb]": {
"editor.formatOnSave": true
},
"[ruby]": {
"editor.formatOnSave": true
},
"vscode-erb-beautify.keepBlankLines": 1,
"ruby.intellisense": false,
"gitpod.openInStable.neverPrompt": true,
"redhat.telemetry.enabled": false,
"emmet.includeLanguages": {
"erb": "html"
},
"files.associations": {
"*.erb": "erb"
}
}
}
7 changes: 5 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ gem 'rails', '~> 6.0.3', '>= 6.0.3.2'

# Use Puma as the app server
gem 'puma', '~> 4.1'
gem "faker"

# Use Active Model has_secure_password
gem 'bcrypt'

Expand All @@ -30,6 +30,9 @@ group :development do
gem 'spring-watcher-listen', '~> 2.0.0'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

gem 'rack-timeout', require: 'rack/timeout/base'
gem 'sprockets', '< 4'
gem 'sassc-rails'
Expand All @@ -43,7 +46,7 @@ group :development, :test do
gem 'pry-rails'
gem 'sqlite3', '~> 1.4.1'
gem 'table_print'
gem 'web_git', github: 'firstdraft/web_git', branch: 'spring2020'
gem 'web_git', github: 'firstdraft/web_git'
end

group :development do
Expand Down
Loading

0 comments on commit 0abb37d

Please sign in to comment.