1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/sinatra-contrib/Gemfile
2022-08-02 13:48:40 -04:00

43 lines
946 B
Ruby

# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'rack-protection', path: '../rack-protection'
gem 'sinatra', path: '..'
gem 'rack-test', github: 'rack/rack-test'
group :development, :test do
platform :jruby do
gem 'json'
gem 'rdoc'
gem 'therubyrhino'
end
platform :jruby, :ruby do
gem 'hamlit'
gem 'hamlit-block', '>= 0.7.1'
gem 'liquid', '~> 2.6.x'
gem 'slim'
end
platform :ruby do
gem 'execjs', '2.0.0'
gem 'nokogiri', '1.13.6'
gem 'redcarpet', '3.5.1'
gem 'yajl-ruby'
end
gem 'multi_json'
end
# 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|
dep = (ENV[lib] || 'stable').sub "#{lib}-", ''
dep = nil if dep == 'stable'
dep = { github: repos[lib], branch: dep } if dep && dep !~ (/(\d+\.)+\d+/)
gem lib, dep if dep
end