1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/rack-protection/Gemfile

14 lines
292 B
Text
Raw Normal View History

2018-02-22 12:12:20 -05:00
source "https://rubygems.org"
2013-05-15 00:14:11 -04:00
# encoding: utf-8
2012-09-05 10:07:28 -04:00
gem 'rake'
rack_version = ENV['rack'].to_s
rack_version = nil if rack_version.empty? or rack_version == 'stable'
rack_version = {:github => 'rack/rack'} if rack_version == 'master'
gem 'rack', rack_version
gem 'sinatra', path: '..'
2011-05-23 04:07:54 -04:00
gemspec