-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
54 lines (46 loc) · 920 Bytes
/
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
source "https://rubygems.org"
# Specify your gem's dependencies in rbs.gemspec
gemspec
# Development dependencies
gem "rake"
gem "rake-compiler"
gem "test-unit"
gem "rspec"
gem "rubocop"
gem "rubocop-rubycw"
gem "rubocop-on-rbs" if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.1')
gem "json"
gem "json-schema"
gem "goodcheck"
gem 'digest'
gem 'tempfile'
gem "rdoc"
gem "fileutils"
gem "raap"
gem "activesupport"
group :libs do
# Libraries required for stdlib test
gem "abbrev"
gem "base64"
gem "bigdecimal"
gem "dbm"
gem "mutex_m"
gem "nkf"
end
group :profilers do
# Performance profiling and benchmarking
gem 'stackprof'
gem 'memory_profiler'
gem 'benchmark-ips'
end
# Test gems
gem "rbs-amber", path: "test/assets/test-gem"
# Bundled gems
gem "net-smtp"
gem 'csv'
group :minitest do
gem "minitest"
end
group :typecheck_test do
gem "steep", "~> 1.8.0.pre", require: false
end