-
Notifications
You must be signed in to change notification settings - Fork 250
/
Gemfile
81 lines (58 loc) · 1.57 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
# frozen_string_literal: true
# Heroku likes the version here; we like only updating one place
ruby File.read(".ruby-version").strip
source "https://rubygems.org"
# Choo choo 🚝 (only include the Rails gems we need)
gem "actionpack", "~> 6.1"
gem "actionview", "~> 6.0"
gem "activesupport", "~> 6.1"
gem "railties", "~> 6.0"
# Use Puma as the app server
gem "puma"
# Helps with running the server locally
gem "foreman"
# For converting strings to URL friendly versions
gem "stringex"
# Rendering markdown
gem "redcarpet"
# Parsing markdown
gem "commonmarker"
# Syntax highlighting code
gem "rouge", "3.30.0"
# For escaping code snippets in markdown
gem "escape_utils"
# One rails log line per request, instead of enraging quantity
gem "lograge"
# Error reporting
gem "bugsnag"
# Parse "front matter" from markdown files
gem 'front_matter_parser'
gem 'matrix'
# Asset compilation
gem 'vite_rails'
# No page reloads
gem 'turbo-rails'
# Sitemap
gem 'sitemap_generator'
group :development, :test do
# Call "byebug" anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: [:mri, :mingw, :x64_mingw]
gem "dotenv-rails"
end
group :development do
# Access an interactive console on exception pages or by calling `console` anywhere in the code.
gem "web-console"
gem "pry"
gem 'graphql-client'
end
group :test do
# Who doesn't love tests!?
gem "rspec-rails"
# We want junit output so we can annotate the build
gem "rspec_junit_formatter"
# Browser testing stuff
gem "capybara"
end
group :test do
gem "buildkite-test_collector"
end