sinatra/sinatra-contrib/Gemfile

48 lines
1.0 KiB
Ruby
Raw Normal View History

2013-03-27 08:35:03 +00:00
source "https://rubygems.org" unless ENV['QUICK']
2011-03-24 07:43:39 +00:00
gemspec
group :development, :test do
2015-07-01 17:23:37 +00:00
platform :ruby_18 do
gem 'libv8', '3.16.14.7'
end
platform :ruby_18, :jruby do
gem 'json'
2015-05-14 22:31:08 +00:00
gem 'rdoc'
end
2011-08-17 11:20:41 +00:00
2015-05-15 02:02:35 +00:00
platform :jruby do
gem 'therubyrhino'
end
platform :jruby, :ruby do
gem 'slim', '2.1.0'
gem 'liquid', '~> 2.6.x'
2015-05-15 02:02:35 +00:00
end
2011-08-17 11:20:41 +00:00
platform :ruby do
2015-05-14 22:31:08 +00:00
gem 'execjs', '2.0.0'
gem 'nokogiri', '1.5.10'
gem 'redcarpet', '2.3.0'
2011-08-17 11:20:41 +00:00
gem 'yajl-ruby'
# ref is a dependency of therubyracer
# version 2 drops support for Rubies earlier than 1.9.3
gem 'ref', '< 2.0'
2015-05-15 02:02:35 +00:00
gem 'therubyracer'
2011-08-17 11:20:41 +00:00
end
2013-02-12 20:28:34 +00:00
gem 'multi_json'
end
2011-08-18 08:10:22 +00:00
# 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|
2011-08-18 08:10:22 +00:00
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
2011-08-18 08:10:22 +00:00
end