mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
f9fa73da34
This reverts commit 2ccd0dc29d
.
It doesn't make sense to have this in master when it is not working. CI
will install Rack 3 and fail jobs. We don't know if we break something
for Rack 2 now.
17 lines
365 B
Ruby
17 lines
365 B
Ruby
# frozen_string_literal: true
|
|
|
|
source 'https://rubygems.org'
|
|
# encoding: utf-8
|
|
|
|
gem 'rake'
|
|
|
|
rack_version = ENV['rack'].to_s
|
|
rack_version = nil if rack_version.empty? || (rack_version == 'stable')
|
|
rack_version = { github: 'rack/rack' } if rack_version == 'main'
|
|
gem 'rack', rack_version
|
|
|
|
gem 'sinatra', path: '..'
|
|
|
|
gemspec
|
|
|
|
gem 'rack-test', github: 'rack/rack-test'
|