File: Gemfile

package info (click to toggle)
ruby-http-2 1.1.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,360 kB
  • sloc: ruby: 6,031; makefile: 4
file content (42 lines) | stat: -rw-r--r-- 589 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# frozen_string_literal: true

source "https://rubygems.org"

gemspec

gem "rake", require: false

group :development do
  gem "pry"
  gem "pry-byebug", platform: :mri
  if RUBY_VERSION >= "3.0.0"
    gem "rubocop"
    gem "rubocop-performance"
  end
end

group :docs do
  gem "yard"
end

group :test do
  gem "rspec"
  gem "simplecov", require: false
end

group :types do
  platform :mri do
    if RUBY_VERSION >= "3.0.0"
      gem "rbs"
      gem "steep"
      gem "typeprof"
    end
  end
end

group :benchmark do
  platform :mri do
    gem "memory_profiler"
    gem "singed"
  end
end