File: Gemfile

package info (click to toggle)
ruby-snmp 1.3.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,996 kB
  • sloc: ruby: 3,260; ansic: 56; makefile: 9; sh: 4
file content (16 lines) | stat: -rw-r--r-- 324 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# frozen_string_literal: true

source "https://rubygems.org"

gemspec

gem "irb"
gem "rake"
gem "minitest"
if RUBY_VERSION >= '2.6'
  gem "rdoc"
else
  # Workaround for psych and RubyGems version error: rdoc >= 6.4.0 depends on psych >= 4.0.0
  # https://github.com/rubygems/rubygems/issues/4976
  gem "rdoc", "< 6.4.0"
end