File: Gemfile

package info (click to toggle)
ruby-ffi 1.17.2%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,000 kB
  • sloc: ruby: 9,539; ansic: 7,733; xml: 151; sh: 51; makefile: 14
file content (23 lines) | stat: -rw-r--r-- 555 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
source 'https://rubygems.org'

group :development do
  gem 'benchmark' # necessary on ruby-3.5+
  gem 'bigdecimal' # necessary on ruby-3.3+
  gem 'bundler', '>= 1.16', '< 3'
  gem 'fiddle', platforms: %i[mri windows] # necessary on ruby-3.5+
  gem 'rake', '~> 13.0'
  gem 'rake-compiler', '~> 1.1'
  gem 'rake-compiler-dock', '~> 1.9.0'
  gem 'rspec', '~> 3.0'
end

group :doc do
  gem 'kramdown'
  gem 'yard', '~> 0.9'
end

group :type_check do
  if RUBY_VERSION >= "2.6" && %w[ ruby truffleruby ].include?(RUBY_ENGINE)
    gem 'rbs', '~> 3.0'
  end
end