-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
25 lines (19 loc) · 962 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
source 'https://rubygems.org'
ruby "3.4.1"
gem 'nesta', :git => 'https://github.com/gma/nesta.git'
# Use the following instead, for a particular version, eg. 0.9.11
# gem 'nesta', '0.9.11'
#
# Use the following instead, for local changes to Nesta:
# gem 'nesta', :path => '/Users/brad/code/nesta'
# Use the following instead, for a particular GitHub commit (copy the SHA from Github):
# gem 'nesta', :git => 'https://github.com/gma/nesta.git', :ref => '90686e4c14b0088f98f6813ff769047217a078c4'
gem 'kramdown', '2.4.0'
gem 'tilt', '2.4.0'
# If using 2.5.0, you get error: uninitialized constant Tilt::MarukuTemplate (NameError)
gem 'nesta-plugin-maldini', :git => 'https://github.com/etc/nesta-plugin-maldini.git'
# Use the following instead, to try out local changes to Maldini:
# gem 'nesta-plugin-maldini', :path => '/Users/brad/code/nesta-plugin-maldini'
gem 'racc'
gem 'rack-rewrite', :git => 'https://github.com/jtrupiano/rack-rewrite.git'
gem 'puma'