rack.git  about / heads / tags
a modular Ruby webserver interface
blob 2b58d070a6e5d00fd90eeb17c9abf168f856d115 310 bytes (raw)
$ git show chunk:Gemfile	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
 
# frozen_string_literal: true

source 'https://rubygems.org'

gemspec

gem "webrick"

group :maintenance, optional: true do
  gem "rubocop", require: false
  gem "rubocop-packaging", require: false
end

group :doc do
  gem 'rdoc'
end

group :test do
  gem 'minitest'
  gem 'bake-test-external', '~> 0.1.3'
end

git clone https://yhbt.net/rack.git