We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a17019 commit 35822c8Copy full SHA for 35822c8
Gemfile
@@ -6,7 +6,18 @@ ruby '3.1.1'
6
7
gem 'faraday'
8
9
-group :development, :test do
+# For development
10
+#
11
+# These gems should be installed only for development environment, but
12
+# `bundle config set --local without 'development,test'` cannot be
13
+# used because it stores the configuration in `.bundle/config`, and
14
+# this file is hard to track on Git
15
16
+# By the way, `--without` option is deprecated
17
18
+# ENV['CI'] is only set on GitHub Actions
19
20
+unless ENV['CI']
21
gem 'dotenv'
22
gem 'pry-byebug'
23
end
0 commit comments