forked from buildkite/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
66 lines (48 loc) · 1.29 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
# frozen_string_literal: true
source "https://rubygems.org"
# Choo choo 🚝 (only include the Rails gems we need)
gem "actionpack"
gem "actionview"
gem "activesupport"
gem "railties"
gem "sprockets-rails"
# Use Puma as the app server
gem "puma"
# Use SCSS for stylesheets
gem "sass-rails"
# Use Uglifier as compressor for JavaScript assets
gem "uglifier"
# 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.3.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"
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]
end
group :development do
# Access an interactive console on exception pages or by calling `console` anywhere in the code.
gem "web-console"
gem "listen"
gem "pry"
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