sinatra/sinatra-contrib/Gemfile

42 lines
918 B
Ruby
Raw Normal View History

2022-02-05 12:09:10 +00:00
source "https://rubygems.org"
2011-03-24 07:43:39 +00:00
gemspec
gem 'sinatra', path: '..'
gem 'rack-protection', path: '../rack-protection'
2022-07-25 14:12:27 +00:00
gem 'rack-test', github: 'rack/rack-test'
group :development, :test do
2016-05-07 09:57:06 +00:00
platform :jruby do
gem 'json'
2015-05-14 22:31:08 +00:00
gem 'rdoc'
2015-05-15 02:02:35 +00:00
gem 'therubyrhino'
end
platform :jruby, :ruby do
gem 'hamlit'
gem 'hamlit-block', '>= 0.7.1'
gem 'liquid', '~> 2.6.x'
gem 'slim'
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'
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 = { 'tilt' => 'rtomayko/tilt', 'rack' => 'rack/rack' }
%w[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