2011-02-18 04:26:42 -05:00
|
|
|
# Why use bundler?
|
2011-02-26 11:06:11 -05:00
|
|
|
# Well, not all development dependencies install on all rubies. Moreover, `gem
|
2011-02-18 04:26:42 -05: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 08:05:02 -05:00
|
|
|
# If you have issues with a gem: `bundle install --without-coffee-script`.
|
2011-02-18 04:26:42 -05:00
|
|
|
|
2011-02-21 05:54:26 -05:00
|
|
|
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
|
|
|
|
source :rubygems unless ENV['QUICK']
|
2011-09-02 16:54:49 -04:00
|
|
|
gemspec
|
2011-02-18 04:26:42 -05:00
|
|
|
|
|
|
|
gem 'rake'
|
|
|
|
gem 'rack-test', '>= 0.5.6'
|
2011-06-09 07:46:30 -04:00
|
|
|
gem 'ci_reporter', :group => :ci
|
2011-02-18 04:26:42 -05:00
|
|
|
|
2011-04-13 07:52:05 -04:00
|
|
|
# Allows stuff like `tilt=1.2.2 bundle install` or `tilt=master ...`.
|
|
|
|
# Used by the CI.
|
2011-05-03 03:11:15 -04:00
|
|
|
github = "git://github.com/%s.git"
|
2011-10-30 12:41:54 -04:00
|
|
|
repos = {'tilt' => github % "rtomayko/tilt", 'rack' => github % "rack/rack"}
|
|
|
|
|
2011-05-03 03:11:15 -04:00
|
|
|
%w[tilt rack].each do |lib|
|
2011-10-30 12:41:54 -04:00
|
|
|
dep = case ENV[lib]
|
|
|
|
when 'stable', nil then nil
|
|
|
|
when /(\d+\.)+\d+/ then "~> " + ENV[lib].sub("#{lib}-", '')
|
|
|
|
else {:git => repos[lib], :branch => dep}
|
2011-10-10 23:21:41 -04:00
|
|
|
end
|
2011-05-03 03:11:15 -04:00
|
|
|
gem lib, dep
|
2011-04-13 07:52:05 -04:00
|
|
|
end
|
|
|
|
|
2011-06-16 05:11:09 -04:00
|
|
|
gem 'haml', '>= 3.0'
|
|
|
|
gem 'sass'
|
|
|
|
gem 'builder'
|
|
|
|
gem 'erubis'
|
2011-09-20 14:43:10 -04:00
|
|
|
gem 'liquid'
|
2011-09-01 13:29:07 -04:00
|
|
|
gem 'slim', '~> 1.0'
|
2011-09-02 17:10:24 -04:00
|
|
|
gem 'temple', '!= 0.3.3'
|
2011-08-11 19:37:04 -04:00
|
|
|
gem 'coffee-script', '>= 2.0'
|
2011-06-16 05:11:09 -04:00
|
|
|
gem 'rdoc'
|
|
|
|
gem 'kramdown'
|
|
|
|
gem 'maruku'
|
|
|
|
gem 'creole'
|
2011-10-30 12:42:17 -04:00
|
|
|
gem 'markaby'
|
|
|
|
gem 'radius'
|
2011-02-18 04:26:42 -05:00
|
|
|
|
2011-07-21 08:00:40 -04:00
|
|
|
if RUBY_ENGINE == 'jruby'
|
|
|
|
gem 'nokogiri', '!= 1.5.0'
|
2011-08-18 03:38:38 -04:00
|
|
|
gem 'jruby-openssl'
|
2011-09-20 14:43:10 -04:00
|
|
|
else
|
2011-07-21 08:00:40 -04:00
|
|
|
gem 'nokogiri'
|
|
|
|
end
|
2011-05-20 08:17:59 -04:00
|
|
|
|
2011-10-07 00:47:06 -04:00
|
|
|
if RUBY_ENGINE == "ruby"
|
|
|
|
gem 'less', '~> 2.0'
|
|
|
|
else
|
|
|
|
gem 'less', '~> 1.0'
|
|
|
|
end
|
|
|
|
|
2011-09-04 00:25:59 -04:00
|
|
|
unless RUBY_ENGINE == 'jruby' && JRUBY_VERSION < "1.6.1" && !ENV['TRAVIS']
|
2011-05-17 05:40:14 -04:00
|
|
|
# C extensions
|
2011-06-16 05:11:09 -04:00
|
|
|
gem 'rdiscount'
|
|
|
|
gem 'redcarpet'
|
2011-10-31 20:01:37 -04:00
|
|
|
gem 'RedCloth' unless RUBY_ENGINE == "macruby"
|
2011-06-05 10:13:55 -04:00
|
|
|
|
|
|
|
## bluecloth is broken
|
2011-06-16 05:11:09 -04:00
|
|
|
#gem 'bluecloth'
|
2011-02-18 04:26:42 -05:00
|
|
|
end
|
|
|
|
|
2011-09-20 14:43:10 -04:00
|
|
|
platforms :ruby_18, :jruby do
|
|
|
|
gem 'json'
|
2011-02-26 09:48:14 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
platforms :mri_18 do
|
|
|
|
# bundler platforms are broken
|
2011-03-19 05:15:58 -04:00
|
|
|
next if RUBY_ENGINE != 'ruby' or RUBY_VERSION > "1.8"
|
2011-06-16 05:11:09 -04:00
|
|
|
gem 'rcov'
|
2011-02-26 09:48:14 -05:00
|
|
|
end
|