File: Gemfile

package info (click to toggle)
ruby-rack-test 2.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 308 kB
  • sloc: ruby: 2,269; makefile: 6
file content (13 lines) | stat: -rw-r--r-- 207 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
source 'https://rubygems.org'

gemspec

# Runtime dependency
if RUBY_VERSION >= '3.1'
  if RUBY_VERSION < '3.2'
    gem 'cgi', '0.3.6'
  end
  gem 'rack', github: 'rack/rack'
else
  gem 'rack', '~> 2.0'
end