-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (23 loc) · 797 Bytes
/
Gemfile
File metadata and controls
30 lines (23 loc) · 797 Bytes
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
# frozen_string_literal: true
source "https://rubygems.org"
# Specify runtime dependencies in the gemspec
gemspec
# Specify development dependencies below
gem "rubocop-minitest", require: false
gem "rubocop-rake", require: false
gem "rubocop-shopify", require: false
gem "puma", ">= 5.0.0"
gem "rack", ">= 2.0.0"
gem "rackup", ">= 2.1.0"
gem "activesupport"
gem "debug"
gem "rake", "~> 13.0"
gem "sorbet-static-and-runtime"
# ruby2.7.xで動かすためにjson_rpc_handlerも3.1以上を要求するので対応したリポジトリ・ブランチを指定
gem 'json_rpc_handler', git: "https://github.com/enechange/json-rpc-handler_ruby2_7.git", branch: 'ruby2_7_branch'
group :test do
gem "faraday", ">= 2.0"
gem "minitest", "~> 5.1", require: false
gem "mocha"
gem "webmock"
end