-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
29 lines (24 loc) · 757 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in web_pipe.gemspec
gemspec
group :development do
gem "dry-auto_inject", "~> 1.0"
gem "dry-schema", "~> 1.0"
gem "dry-transformer", "~> 0.1"
gem "pry-byebug"
gem "rack-flash3", "~> 1.0"
gem "rack-test", "~> 1.1"
gem "rake", "~> 12.3", ">= 12.3.3"
gem "redcarpet", "~> 3.4"
gem "rspec", "~> 3.0"
gem "rubocop", "~> 1.8"
gem "rubocop-rspec", "~> 2.1"
gem "yard", "~> 0.9", ">= 0.9.20"
# TODO: Move to gemspec when hanami-view 2.0 is available
gem "hanami-view", github: "hanami/view", tag: "v2.1.0.beta2"
end
group :test do
gem "simplecov", require: false
end