-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
38 lines (31 loc) · 987 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
36
37
38
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", "~> 1.1.0"
gem "puma", "~> 5.6"
gem "http", "~> 5.0.4"
gem "countries", "~> 4.2.1"
gem "tty-logger"
gem "icalendar", "~> 2.8.0"
group :test, optional: true do
gem "nokogiri"
gem "minitest"
gem "minitest-profile"
gem "minitest-reporters"
gem "shoulda"
gem "rails-dom-testing"
end
gem "bridgetown-sitemap", "~> 1.1", :group => :bridgetown_plugins