Skip to content

Latest commit

 

History

History
37 lines (22 loc) · 641 Bytes

README.md

File metadata and controls

37 lines (22 loc) · 641 Bytes

What

This is the source of my homepage https://dsimidzija.github.io/.

Using

rvm / bundler / rake

At the time of writing, running with ruby-2.5.1.

Running locally

$ jekyll serve --incremental --livereload

Misc troubleshooting

No bundler exe found

If you get:

Can't find gem bundler (>= 0.a) with executable bundle (Gem::GemNotFoundException)

Do this:

$ cat Gemfile.lock | grep -A 1 "BUNDLED WITH"
BUNDLED WITH
   2.1.4

$ gem install bundler -v '2.1.4'