-
Notifications
You must be signed in to change notification settings - Fork 4
/
Gemfile
56 lines (44 loc) · 1.08 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# frozen_string_literal: true
source "https://rubygems.org"
# Specify your gem's dependencies in datadog-ci.gemspec
gemspec
# dev experience
gem "pry"
gem "rake"
gem "standard", "~> 1.31"
# native extensions
gem "rake-compiler"
# testing
gem "rspec"
gem "rspec-collection_matchers"
gem "rspec_junit_formatter"
gem "climate_control"
gem "appraisal"
gem "webmock"
# platform helpers
gem "os"
# docs and release
gem "yard"
gem "redcarpet" if RUBY_PLATFORM != "java"
gem "webrick"
gem "pimpmychangelog", ">= 0.1.2"
# coverage
gem "simplecov"
gem "simplecov-cobertura", "~> 2.1.0"
# type checks, memory checks, etc.
group :check do
if RUBY_VERSION >= "3.0.0" && RUBY_PLATFORM != "java"
gem "rbs", "~> 3.5.0", require: false
gem "steep", "~> 1.7.0", require: false
end
gem "ruby_memcheck", ">= 3" if RUBY_VERSION >= "3.4.0" && RUBY_PLATFORM != "java"
end
# development dependencies for vscode integration and debugging
group :development do
if RUBY_VERSION >= "3.0.0" && RUBY_PLATFORM != "java"
gem "ruby-lsp"
gem "ruby-lsp-rspec"
gem "debug"
gem "irb"
end
end