forked from dry-rb/dry-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
24 lines (19 loc) · 810 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
# frozen_string_literal: true
source "https://rubygems.org"
eval_gemfile "Gemfile.devtools"
gemspec
# Remove verson constraint once latter versions release their -java packages
gem "bootsnap", "= 1.4.9"
gem "dotenv"
gem "dry-auto_inject", github: "dry-rb/dry-auto_inject", branch: "main"
gem "dry-configurable", github: "dry-rb/dry-configurable", branch: "main"
gem "dry-core", github: "dry-rb/dry-core", branch: "main"
gem "dry-events", github: "dry-rb/dry-events", branch: "main"
gem "dry-inflector", github: "dry-rb/dry-inflector", branch: "main"
gem "dry-logic", github: "dry-rb/dry-logic", branch: "main"
gem "dry-monitor", github: "dry-rb/dry-monitor", branch: "main"
gem "dry-types", github: "dry-rb/dry-types", branch: "main"
gem "zeitwerk"
group :tools do
gem "pry-byebug", platforms: :mri
end