rack.git  about / heads / tags
a modular Ruby webserver interface
blob 62a3494e88155ae9d7f6e617e6d3bed148fa8683 835 bytes (raw)
$ git show no-unicorn: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
22
23
24
25
26
27
28
29
 
# frozen_string_literal: true

source 'https://rubygems.org'

gemspec

# What we need to do here is just *exclude* JRuby, but bundler has no way to do
# this, because of some argument that I know I had with Yehuda and Carl years
# ago, but I've since forgotten. Anyway, we actually need it here, and it's not
# avaialable, so prepare yourself for a yak shave when this breaks.
c_platforms = Bundler::Dsl::VALID_PLATFORMS.dup.delete_if do |platform|
  platform =~ /jruby/
end

gem "rubocop", "0.68.1", require: false

# Alternative solution that might work, but it has bad interactions with
# Gemfile.lock if that gets committed/reused:
# c_platforms = [:mri] if Gem.platforms.last.os == "java"

group :extra do
  gem 'fcgi', platforms: c_platforms
  gem 'dalli'
  gem 'thin', platforms: c_platforms
end

group :doc do
  gem 'rdoc'
end

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