sinatra/Gemfile

80 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-06-09 11:46:30 +00:00
gem 'ci_reporter', :group => :ci
2011-02-18 09:26:42 +00:00
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-06-16 09:11:09 +00:00
gem 'haml', '>= 3.0'
gem 'sass'
gem 'builder'
gem 'erubis'
gem 'less', '~> 1.0'
2011-09-01 17:29:07 +00:00
if RUBY_ENGINE == "maglev"
gem 'liquid', :git => "https://github.com/Shopify/liquid.git"
else
gem 'liquid'
end
2011-09-01 17:29:07 +00:00
gem 'slim', '~> 1.0'
2011-06-16 09:11:09 +00:00
gem 'RedCloth' if RUBY_VERSION < "1.9.3" and not RUBY_ENGINE.start_with? 'ma'
gem 'coffee-script', '>= 2.0'
2011-06-16 09:11:09 +00:00
gem 'rdoc'
gem 'kramdown'
gem 'maruku'
gem 'creole'
2011-02-18 09:26:42 +00:00
if RUBY_ENGINE == 'jruby'
gem 'nokogiri', '!= 1.5.0'
gem 'jruby-openssl'
elsif RUBY_ENGINE != 'maglev'
gem 'nokogiri'
end
2011-05-20 12:17:59 +00:00
unless RUBY_ENGINE == 'jruby' && JRUBY_VERSION < "1.6.1"
# C extensions
2011-06-16 09:11:09 +00:00
gem 'rdiscount'
gem 'redcarpet'
## bluecloth is broken
2011-06-16 09:11:09 +00:00
#gem 'bluecloth'
2011-02-18 09:26:42 +00:00
end
if RUBY_ENGINE == 'maglev'
gem 'json', :git => "https://github.com/MagLev/json.git"
2011-06-16 09:11:09 +00:00
gem 'markaby'
gem 'radius'
else
platforms :ruby_18, :jruby do
gem 'json'
gem 'markaby'
gem 'radius'
end
end
platforms :mri_18 do
# bundler platforms are broken
next if RUBY_ENGINE != 'ruby' or RUBY_VERSION > "1.8"
2011-06-16 09:11:09 +00:00
gem 'rcov'
end