-
-
Notifications
You must be signed in to change notification settings - Fork 80
/
Gemfile
43 lines (35 loc) · 1013 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# frozen_string_literal: true
source "https://rubygems.org"
eval_gemfile "Gemfile.devtools"
gemspec
group :tools do
# Remove hotch until https://github.com/ko1/allocation_tracer/issues/19 is fixed and it can be
# installed on macOS again.
# gem "hotch"
gem "pry-byebug", platform: :mri
end
group :test do
gem "saharspec"
gem "dry-inflector"
gem "dry-files"
gem "erubi"
gem "haml", "~> 6.0"
gem "hanami-cli", github: "hanami/cli", branch: "main"
gem "hanami", github: "hanami/hanami", branch: "main"
gem "hanami-utils", github: "hanami/utils", branch: "main"
gem "hanami-controller", github: "hanami/controller", branch: "main"
gem "hanami-router", github: "hanami/router", branch: "main"
gem "hanami-devtools", github: "hanami/devtools", branch: "main"
gem "rack", ">= 2.0.6"
gem "slim", "~> 5.0"
end
group :benchmarks do
gem "actionpack"
gem "actionview"
gem "benchmark-ips"
end
group :docs do
gem "redcarpet", platforms: :mri
gem "yard"
gem "yard-junk"
end