forked from camertron/camertron.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
35 lines (30 loc) · 941 Bytes
/
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
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Hello! This is where you manage which Bridgetown version is used to run.
# When you want to use a different version, change it below, save the
# file and run `bundle install`. Run Bridgetown with `bundle exec`, like so:
#
# bundle exec bridgetown serve
#
# This will help ensure the proper Bridgetown version is running.
#
# To install a plugin, simply run bundle add and specify the group
# "bridgetown_plugins". For example:
#
# bundle add some-new-plugin -g bridgetown_plugins
#
# Happy Bridgetowning!
gem "bridgetown", "~> 0.20.0"
group :bridgetown_plugins do
gem "bulmatown", "~> 1.1"
gem "bridgetown-quick-search", "~> 1.0"
gem "bridgetown-feed", "~> 2.0"
end
group :test, optional: true do
gem "nokogiri"
gem "minitest"
gem "minitest-profile"
gem "minitest-reporters"
gem "shoulda"
gem "rails-dom-testing"
end