dry-types/Gemfile

28 lines
457 B
Ruby
Raw Normal View History

2019-04-10 12:04:28 +00:00
# frozen_string_literal: true
2020-12-12 06:43:26 +00:00
source "https://rubygems.org"
2015-08-23 11:14:33 +00:00
2020-12-12 06:43:26 +00:00
eval_gemfile "Gemfile.devtools"
2015-08-23 11:14:33 +00:00
gemspec
2022-10-30 10:11:12 +00:00
gem "dry-monads", github: "dry-rb/dry-monads", branch: "main"
2019-11-06 13:05:11 +00:00
2016-02-06 08:31:22 +00:00
group :test do
2022-07-31 15:11:12 +00:00
gem "dry-struct", github: "dry-rb/dry-struct", branch: "main"
2016-02-06 08:31:22 +00:00
end
group :tools do
2020-12-12 06:43:26 +00:00
gem "pry-byebug", platform: :mri
2015-12-10 16:02:55 +00:00
end
group :benchmarks do
2019-10-06 14:49:54 +00:00
platform :mri do
2020-12-12 06:43:26 +00:00
gem "attrio"
gem "benchmark-ips"
gem "fast_attributes"
gem "hotch"
gem "virtus"
2019-10-06 14:49:54 +00:00
end
end