mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
47 lines
1 KiB
Ruby
47 lines
1 KiB
Ruby
source "https://rubygems.org" unless ENV['QUICK']
|
|
gemspec
|
|
|
|
group :development, :test do
|
|
|
|
platform :ruby_18 do
|
|
gem 'libv8', '3.16.14.7'
|
|
end
|
|
|
|
platform :ruby_18, :jruby do
|
|
gem 'json'
|
|
gem 'rdoc'
|
|
end
|
|
|
|
platform :jruby do
|
|
gem 'therubyrhino'
|
|
end
|
|
|
|
platform :jruby, :ruby do
|
|
gem 'slim', '2.1.0'
|
|
gem 'liquid', '~> 2.6.x'
|
|
end
|
|
|
|
platform :ruby do
|
|
gem 'execjs', '2.0.0'
|
|
gem 'nokogiri', '1.5.10'
|
|
gem 'redcarpet', '2.3.0'
|
|
gem 'yajl-ruby'
|
|
# ref is a dependency of therubyracer
|
|
# version 2 drops support for Rubies earlier than 1.9.3
|
|
gem 'ref', '< 2.0'
|
|
gem 'therubyracer'
|
|
end
|
|
|
|
gem 'multi_json'
|
|
end
|
|
|
|
# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
|
|
# Used by the CI.
|
|
repos = { 'sinatra' => 'sinatra/sinatra', 'tilt' => 'rtomayko/tilt', 'rack' => 'rack/rack' }
|
|
%w[sinatra tilt rack].each do |lib|
|
|
dep = (ENV[lib] || 'stable').sub "#{lib}-", ''
|
|
dep = nil if dep == 'stable'
|
|
dep = {:github => repos[lib], :branch => dep} if dep and dep !~ /(\d+\.)+\d+/
|
|
gem lib, dep if dep
|
|
end
|
|
|