-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
23 lines (19 loc) · 503 Bytes
/
Gemfile
File metadata and controls
23 lines (19 loc) · 503 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '3.1.1'
gem 'faraday'
# For development
#
# These gems should be installed only for development environment, but
# `bundle config set --local without 'development,test'` cannot be
# used because it stores the configuration in `.bundle/config`, and
# this file is hard to track on Git
#
# By the way, `--without` option is deprecated
#
# ENV['CI'] is only set on GitHub Actions
#
unless ENV['CI']
gem 'dotenv'
gem 'pry-byebug'
end