Skip to content

Commit afecd15

Browse files
committed
Add rack to Gemfile and execute server using bundle exec
1 parent cd1238e commit afecd15

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ require 'open-uri'
44
versions = JSON.parse(open('https://pages.github.com/versions.json').read)
55

66
gem 'github-pages', versions['github-pages']
7+
gem 'rack'

Gemfile.lock

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,7 @@ GEM
212212
pathutil (0.16.2)
213213
forwardable-extended (~> 2.6)
214214
public_suffix (3.1.1)
215+
rack (2.0.7)
215216
rb-fsevent (0.10.3)
216217
rb-inotify (0.10.0)
217218
ffi (~> 1.0)
@@ -243,6 +244,7 @@ PLATFORMS
243244

244245
DEPENDENCIES
245246
github-pages (= 198)
247+
rack
246248

247249
BUNDLED WITH
248250
1.17.2

Procfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web: rackup -p $PORT
1+
web: bundle exec rackup -p $PORT

0 commit comments

Comments
 (0)