File: Gemfile

package info (click to toggle)
ruby-sshkit 1.20.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 692 kB
  • sloc: ruby: 3,487; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 601 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
source 'https://rubygems.org'

gemspec

platforms :rbx do
  gem 'rubysl', '~> 2.0'
  gem 'json'
end

# Chandler requires Ruby >= 2.1.0, but depending on the Travis environment,
# we may not meet that requirement. Only include the chandler gem if the Ruby
# requirement is met. (Chandler is used only for `rake release`; see Rakefile.)
if Gem::Requirement.new('>= 2.1.0').satisfied_by?(Gem::Version.new(RUBY_VERSION))
  gem 'chandler', '>= 0.1.1'
end

# public_suffix 3+ requires ruby 2.1+
if Gem::Requirement.new('< 2.1').satisfied_by?(Gem::Version.new(RUBY_VERSION))
  gem 'public_suffix', '< 3'
end