-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Expand file tree
/
Copy pathGemfile
More file actions
27 lines (24 loc) · 776 Bytes
/
Copy pathGemfile
File metadata and controls
27 lines (24 loc) · 776 Bytes
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
source "https://rubygems.org"
gem "addressable"
gem "middleman", "~> 4.5.1"
gem "middleman-autoprefixer"
gem "middleman-blog"
gem "middleman-livereload"
gem "middleman-minify-html"
gem "middleman-syntax"
gem "middleman-gh-pages"
gem "redcarpet"
# Adds GFM parsing to kramdown so ```backtick``` fenced code blocks render as
# <pre><code> (kramdown's own parser only fences with ~~~).
gem "kramdown-parser-gfm"
gem "standard", "~> 1.51"
# activesupport, em-websocket, and tilt load these from the standard library but
# don't declare them, and Ruby 3.4 drops them from the default gems. Declare them
# so the bundle keeps working on 3.4+ (and Ruby stops warning on 3.3).
gem "base64"
gem "bigdecimal"
gem "csv"
gem "mutex_m"
group :development, :test do
gem "minitest"
end