mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
67 lines
1.4 KiB
Ruby
67 lines
1.4 KiB
Ruby
# Why use bundler?
|
|
# Well, not all development dependencies install on all rubies. Moreover, `gem
|
|
# install sinatra --development` doesn't work, as it will also try to install
|
|
# development dependencies of our dependencies, and those are not conflict free.
|
|
# So, here we are, `bundle install`.
|
|
#
|
|
# If you have issues with a gem: `bundle install --without-coffee-script`.
|
|
|
|
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
|
|
source 'https://rubygems.org' unless ENV['QUICK']
|
|
gemspec
|
|
|
|
gem 'rake'
|
|
gem 'rack', github: 'rack/rack'
|
|
gem 'rack-test', '>= 0.6.2'
|
|
gem "minitest", "~> 5.0"
|
|
|
|
gem "rack-protection", path: "rack-protection"
|
|
gem "sinatra-contrib", path: "sinatra-contrib"
|
|
|
|
if RUBY_ENGINE == 'jruby'
|
|
gem 'nokogiri', '!= 1.5.0'
|
|
gem 'trinidad'
|
|
end
|
|
|
|
if RUBY_ENGINE == "ruby"
|
|
gem 'less', '~> 2.0'
|
|
gem 'mini_racer'
|
|
gem 'redcarpet'
|
|
gem 'wlang', '>= 2.0.1'
|
|
gem 'bluecloth'
|
|
gem 'rdiscount'
|
|
gem 'RedCloth'
|
|
gem 'puma'
|
|
gem 'yajl-ruby'
|
|
gem 'nokogiri'
|
|
gem 'thin'
|
|
gem 'slim', '~> 2.0'
|
|
gem 'coffee-script', '>= 2.0'
|
|
gem 'rdoc'
|
|
gem 'kramdown'
|
|
gem 'maruku'
|
|
gem 'creole'
|
|
gem 'wikicloth'
|
|
gem 'markaby'
|
|
gem 'radius'
|
|
gem 'asciidoctor'
|
|
gem 'liquid'
|
|
gem 'stylus'
|
|
gem 'rabl'
|
|
gem 'builder'
|
|
gem 'erubis'
|
|
gem 'haml', '>= 3.0'
|
|
gem 'sass'
|
|
gem 'reel-rack'
|
|
gem 'celluloid', '~> 0.16.0'
|
|
end
|
|
|
|
if RUBY_ENGINE == "rbx"
|
|
gem 'json'
|
|
gem 'rubysl'
|
|
gem 'rubysl-test-unit'
|
|
end
|
|
|
|
platforms :jruby do
|
|
gem 'json'
|
|
end
|