sinatra/Gemfile

61 lines
1.9 KiB
Ruby
Raw Normal View History

2011-02-18 09:26:42 +00:00
# Why use bundler?
2011-02-26 16:06:11 +00:00
# Well, not all development dependencies install on all rubies. Moreover, `gem
2011-02-18 09:26:42 +00:00
# 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`.
#
2011-02-21 13:05:02 +00:00
# If you have issues with a gem: `bundle install --without-coffee-script`.
2011-02-18 09:26:42 +00:00
2011-02-21 10:54:26 +00:00
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
source :rubygems unless ENV['QUICK']
2011-02-18 09:26:42 +00:00
gem 'rake'
gem 'rack-test', '>= 0.5.6'
2011-04-13 11:52:05 +00:00
# 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}-", ''
2011-05-03 10:30:37 +00:00
dep = nil if dep == 'stable'
dep = {:git => repos[lib], :branch => dep} if dep and dep !~ /(\d+\.)+\d+/
gem lib, dep
2011-04-13 11:52:05 +00:00
end
2011-02-18 09:26:42 +00:00
gem 'haml', '>= 3.0', :group => 'haml'
2011-04-26 10:32:19 +00:00
gem 'sass', :group => 'sass'
2011-02-18 09:26:42 +00:00
gem 'builder', :group => 'builder'
gem 'erubis', :group => 'erubis'
gem 'less', :group => 'less'
gem 'liquid', :group => 'liquid'
gem 'nokogiri', :group => 'nokogiri'
gem 'slim', :group => 'slim'
2011-05-10 14:32:52 +00:00
gem 'RedCloth', :group => 'redcloth' if RUBY_VERSION < "1.9.3" and RUBY_ENGINE != 'macruby'
2011-02-26 16:06:11 +00:00
gem 'coffee-script', '>= 2.0', :group => 'coffee-script'
gem 'rdoc', :group => 'rdoc'
2011-04-15 09:00:07 +00:00
gem 'kramdown', :group => 'kramdown'
gem 'maruku', :group => 'maruku'
2011-04-15 09:51:35 +00:00
gem 'creole', :group => 'creole'
2011-02-18 09:26:42 +00:00
unless RUBY_ENGINE == 'jruby' && JRUBY_VERSION < "1.6.1"
# C extensions
2011-02-18 09:26:42 +00:00
gem 'rdiscount', :group => 'rdiscount'
gem 'redcarpet', :group => 'redcarpet'
## bluecloth is broken
#gem 'bluecloth', :group => 'bluecloth'
2011-02-18 09:26:42 +00:00
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