-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (30 loc) · 756 Bytes
/
Gemfile
File metadata and controls
38 lines (30 loc) · 756 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
31
32
33
34
35
36
37
38
require_relative "version"
source "https://rubygems.org"
ruby Foobara::HttpCommandConnector::MINIMUM_RUBY_VERSION
gemspec
# gem "foobara", path: "../foobara"
gem "foobara-dotenv-loader", "< 2.0.0"
gem "rake"
group :development do
gem "foob", "< 2.0.0"
gem "foobara-rubocop-rules", "< 2.0.0"
gem "guard-rspec"
gem "rubocop-rake"
gem "rubocop-rspec"
end
group :development, :test do
gem "pry"
gem "pry-byebug"
# TODO: Just adding this to suppress warnings seemingly coming from pry-byebug. Can probably remove this once
# pry-byebug has irb as a gem dependency
gem "irb"
end
group :test do
gem "foobara-spec-helpers", "< 2.0.0"
gem "rspec"
gem "rspec-its"
gem "ruby-prof"
gem "simplecov"
gem "vcr"
gem "webmock"
end