forked from hacknightlbc/hacknightlbc.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (40 loc) · 1.05 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
source "https://rubygems.org"
ruby RUBY_VERSION
# Hello!
#
# After cloning HacknightsLBC locally, you need to setup your local environment.
# Do this to insure your local gems (and versions) match what's on Github
# To setup (or update) your environment to match Github, do this:
#
# bundle install
#
# This will help ensure the proper Jekyll version is running.
#
# To serve the site for local testing, do this:
#
# bundle exec jekyll serve
#
#
#
# Additional Notes
# =====
# Because HacknightsLBC is hosted on Github, it requires the github-pages gem
# Github does not support any other jekyll plugins.
#
# To find out what plugins are included in github-pages, that you can use
# in the _config.yml file, visit:
# https://pages.github.com/versions/
#
#
# To Use the Optional Development Gems, do this:
#
# bundle install --with development
#
# Happy Jekylling!
gem "github-pages", group: :jekyll_plugins
group :jekyll_plugins do
end
group :development, optional: true do
gem 'jekyll-admin', require: false
gem 'editorconfig', require: false
end