mirror of
https://github.com/sinatra/sinatra
synced 2023-03-27 23:18:01 -04:00
89c6a38a15
This reverts commit 52dc53222d
.
64 lines
2.2 KiB
Ruby
64 lines
2.2 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 :rubygems unless ENV['QUICK']
|
|
|
|
gem 'rake'
|
|
gem 'rack-test', '>= 0.5.6'
|
|
|
|
# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
|
|
# Used by the CI.
|
|
github = "git://github.com/%s.git"
|
|
repos = { 'tilt' => github % "rtomayko/tilt", 'rack' => github % "rack/rack" }
|
|
%w[tilt rack].each do |lib|
|
|
dep = (ENV[lib] || 'stable').sub "#{lib}-", ''
|
|
dep = nil if dep == 'stable'
|
|
dep = {:git => repos[lib], :branch => dep} if dep and dep !~ /(\d+\.)+\d+/
|
|
gem lib, dep
|
|
end
|
|
|
|
gem 'haml', '>= 3.0', :group => 'haml'
|
|
gem 'sass', :group => 'sass'
|
|
gem 'builder', :group => 'builder'
|
|
gem 'erubis', :group => 'erubis'
|
|
gem 'less', '~> 1.0', :group => 'less'
|
|
gem 'liquid', :group => 'liquid'
|
|
gem 'slim', :group => 'slim'
|
|
gem 'RedCloth', :group => 'redcloth' if RUBY_VERSION < "1.9.3" and not RUBY_ENGINE.start_with? 'ma'
|
|
gem 'coffee-script', '>= 2.0', :group => 'coffee-script'
|
|
gem 'rdoc', :group => 'rdoc'
|
|
gem 'kramdown', :group => 'kramdown'
|
|
gem 'maruku', :group => 'maruku'
|
|
gem 'creole', :group => 'creole'
|
|
|
|
gem 'nokogiri', :group => 'nokogiri' if RUBY_ENGINE != 'maglev'
|
|
#nokogiri_options = {:group => 'nokogiri'}
|
|
#nokogiri_options[:git] = "https://github.com/MagLev/nokogiri.git" if RUBY_ENGINE == 'maglev'
|
|
#gem 'nokogiri', nokogiri_options if RUBY_ENGINE != 'maglev'
|
|
|
|
unless RUBY_ENGINE == 'jruby' && JRUBY_VERSION < "1.6.1"
|
|
# C extensions
|
|
gem 'rdiscount', :group => 'rdiscount'
|
|
gem 'redcarpet', :group => 'redcarpet'
|
|
|
|
## bluecloth is broken
|
|
#gem 'bluecloth', :group => 'bluecloth'
|
|
end
|
|
|
|
platforms :ruby_18, :jruby do
|
|
gem 'json', :group => 'coffee-script'
|
|
gem 'markaby', :group => 'markaby'
|
|
gem 'radius', :group => 'radius'
|
|
end
|
|
|
|
platforms :mri_18 do
|
|
# bundler platforms are broken
|
|
next if RUBY_ENGINE != 'ruby' or RUBY_VERSION > "1.8"
|
|
gem 'rcov', :group => 'rcov'
|
|
end
|