-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
44 lines (36 loc) · 1.42 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'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
####
# Welcome to your project's Gemfile, used by Rubygems & Bundler.
#
# To install a plugin, run:
#
# bundle add new-plugin-name -g bridgetown_plugins
#
# This will ensure the plugin is added to the correct Bundler group.
#
# When you run Bridgetown commands, we recommend using a binstub like so:
#
# bin/bridgetown start (or console, etc.)
#
# This will help ensure the proper Bridgetown version is running.
####
# If you need to upgrade/switch Bridgetown versions, change the line below
# and then run `bundle update bridgetown`
gem 'bridgetown', '~> 1.2.0'
# Bridgetown/Roda supports Rack 3, other ecosystem gems such as our Active
# Record pluging don’t yet support it.
gem "rack", "~> 2.2"
# Uncomment to add file-based dynamic routing to your project:
# gem "bridgetown-routes", "~> 1.1.0", group: :bridgetown_plugins
# Uncomment to use the Inspectors API to manipulate the output
# of your HTML or XML resources:
# gem "nokogiri", "~> 1.13"
# Puma is a Rack-compatible server used by Bridgetown
# (you can optionally limit this to the "development" group)
gem 'puma', '~> 5.6'
# load environment variables from `.env`.
gem 'dotenv', '~> 2.8', '>= 2.8.1', groups: %i[development test]
# plugin to use notion as a cms
# gem 'bridgetown_notion', path: '../bridgetown_notion', group: :bridgetown_plugins
gem 'bridgetown_notion', '~> 0.1.0'