diff options
| author | gabrielgio <gabriel.giovanini@pm.me> | 2020-05-10 19:27:27 +0200 |
|---|---|---|
| committer | gabrielgio <gabriel.giovanini@pm.me> | 2020-05-10 19:27:27 +0200 |
| commit | 13443a881c280b0ea0f404d63a695c06ebffa123 (patch) | |
| tree | f00df5c93a84f7dc09ed096c1743ce832eab1681 | |
| parent | 763a140704747b0d5c15455ad216aba4852207da (diff) | |
| download | gabrielgio.me-13443a881c280b0ea0f404d63a695c06ebffa123.tar.gz gabrielgio.me-13443a881c280b0ea0f404d63a695c06ebffa123.tar.bz2 gabrielgio.me-13443a881c280b0ea0f404d63a695c06ebffa123.zip | |
fix: Add gemfile so Gitlab can compile it
Signed-off-by: gabrielgio <gabriel.giovanini@pm.me>
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Gemfile | 8 |
2 files changed, 9 insertions, 2 deletions
@@ -2,9 +2,8 @@ _site vendor/ .sass-cache .jekyll-metadata -Gemfile -Gemfile.lock node_modules +Gemfile.lock vendor/bundle/ vendor/cache/ vendor/gems/ @@ -0,0 +1,8 @@ +# frozen_string_literal: true + +source "https://rubygems.org" + +git_source(:github) {|repo_name| "https://gitlab.com/#{repo_name}" } + +gem "jekyll" +gem "minima" |
