Skip to content

Commit 57a238b

Browse files
author
Pat McKernin
committed
Updates Spring 2022
1 parent 757fc1b commit 57a238b

7 files changed

Lines changed: 102 additions & 91 deletions

File tree

.gitpod.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
1-
image: jelaniwoods/appdev2021-rps-css@sha256:c548d4b9d7758bf9a1ca30848df06f852a52b4f7be76707cba7e274e44b037a1
1+
image: patrickmckernin/rpscss2022spring
22

33
tasks:
44
- init: bin/setup
55
ports:
66
- port: 3000
77
onOpen: open-preview
8-
- port: 9515
8+
- port: 9500-9999
99
onOpen: ignore
1010

11+
1112
vscode:
1213
extensions:
13-
- shd101wyy.markdown-preview-enhanced
1414
- vortizhe.simple-ruby-erb
15-
- CraigMaslowski.erb
16-
- Vense.rails-snippets
17-
- wingrunr21.vscode-ruby
15+
- mbessey.vscode-rufo
16+
- aliariff.vscode-erb-beautify

.theia/settings.json

Lines changed: 0 additions & 7 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"editor.tabSize": 2,
3+
"emmet.includeLanguages": {
4+
"erb": "html"
5+
},
6+
"files.associations": {
7+
"*.erb": "erb"
8+
}
9+
}

Dockerfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,6 @@ RUN sudo mv chromedriver /usr/bin/chromedriver
8484
RUN sudo chown root:root /usr/bin/chromedriver
8585
RUN sudo chmod +x /usr/bin/chromedriver
8686

87-
RUN /bin/bash -l -c "gem install htmlbeautifier"
88-
RUN /bin/bash -l -c "gem install rufo"
8987
COPY Gemfile /base-rails/Gemfile
9088
COPY --chown=gitpod:gitpod Gemfile.lock /base-rails/Gemfile.lock
9189
RUN /bin/bash -l -c "gem install bundler:2.1.4"

Gemfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ group :development do
4646
gem 'better_errors'
4747
gem 'binding_of_caller'
4848
gem 'draft_generators', github: 'firstdraft/draft_generators', branch: 'winter-2020'
49+
gem 'rufo'
50+
gem 'htmlbeautifier'
4951
end
5052

5153
group :test do

0 commit comments

Comments
 (0)