-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
48 lines (40 loc) · 1.09 KB
/
Gemfile
File metadata and controls
48 lines (40 loc) · 1.09 KB
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
45
46
47
48
source 'https://rubygems.org'
ruby '4.0.0'
if Gem::Version.new( Bundler::VERSION ) < Gem::Version.new( '2.0.0' )
abort 'Bundler version >= 2.X.X is required'
end
gem 'abbrev'
gem 'ostruct'
gem 'rake'
gem 'highline'
gem 'require_all'
gem 'dotenv'
gem 'builder'
gem 'middleman', '~> 4.5', '>= 4.5.1'
gem 'middleman-minify-html'
gem 'middleman-deploy', '~> 2.0.0.pre.alpha'
gem 'net-ftp', '~> 0.1.3'
gem 'redcarpet'
# Unfortunately Middleman v4 incompatible with slim v5
# https://stackoverflow.com/a/77356029/161869
gem 'slim', '~>4.0'
gem 'titleize'
# Fixes warnings you're seeing indicate that certain Ruby standard
# library gems (bigdecimal and mutex_m) are used by activesupport
# but will not be included as default gems in future Ruby versions
# (starting from Ruby 3.4.0).
gem 'bigdecimal'
gem 'mutex_m'
gem 'csv'
# Ruby 4.0.0 removed these gems from the standard library
# Required by Middleman, Rack, RuboCop, and Tilt
gem 'cgi'
gem 'tsort'
gem 'rdoc'
group :development do
gem 'pry'
gem 'pry-nav'
gem 'rubocop'
gem 'rubocop-performance', '~> 1.21.0'
gem 'rubocop-rake', '~> 0.6.0'
end