-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Gemfile
33 lines (28 loc) · 955 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
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"#, github: "bridgetownrb/bridgetown", branch: "main"
gem "rake"
gem "rubocop"
gem "octokit"
gem "rmagick"
group :bridgetown_plugins do
gem "bridgetown-feed"
gem "bridgetown-seo-tag"
gem "bridgetown-minify-html" #, github: 'MikeRogers0/bridgetown-minify-html'
gem "bridgetown-inline-svg"
end
gem "activesupport", "~> 6.1"