2011-02-18 10:26:42 +01:00
|
|
|
# Why use bundler?
|
2011-02-26 17:06:11 +01:00
|
|
|
# Well, not all development dependencies install on all rubies. Moreover, `gem
|
2011-02-18 10:26:42 +01: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 14:05:02 +01:00
|
|
|
# If you have issues with a gem: `bundle install --without-coffee-script`.
|
2011-02-18 10:26:42 +01:00
|
|
|
|
2011-02-21 11:54:26 +01:00
|
|
|
RUBY_ENGINE = 'ruby' unless defined? RUBY_ENGINE
|
2013-03-07 22:43:46 -03:00
|
|
|
source 'https://rubygems.org' unless ENV['QUICK']
|
2011-09-02 14:54:49 -06:00
|
|
|
gemspec
|
2011-02-18 10:26:42 +01:00
|
|
|
|
|
|
|
gem 'rake'
|
2016-11-06 17:40:35 -08:00
|
|
|
gem 'rack', git: 'https://github.com/rack/rack.git'
|
2014-06-21 10:59:28 +02:00
|
|
|
gem 'rack-test', '>= 0.6.2'
|
2015-01-11 01:15:19 +05:30
|
|
|
gem "minitest", "~> 5.0"
|
2017-05-07 08:02:33 +09:00
|
|
|
gem 'yard'
|
2016-07-25 17:28:58 +09:00
|
|
|
|
2016-08-17 19:31:48 +09:00
|
|
|
gem "rack-protection", path: "rack-protection"
|
|
|
|
gem "sinatra-contrib", path: "sinatra-contrib"
|
2011-02-18 10:26:42 +01:00
|
|
|
|
2017-08-28 10:17:46 +02:00
|
|
|
gem "twitter-text", "1.14.7"
|
2016-12-30 14:46:47 +09:00
|
|
|
|
2011-07-21 14:00:40 +02:00
|
|
|
if RUBY_ENGINE == 'jruby'
|
|
|
|
gem 'nokogiri', '!= 1.5.0'
|
2012-05-13 22:32:18 +02:00
|
|
|
gem 'trinidad'
|
2011-07-21 14:00:40 +02:00
|
|
|
end
|
2011-05-20 14:17:59 +02:00
|
|
|
|
2015-07-26 22:51:25 -07:00
|
|
|
if RUBY_ENGINE == "ruby"
|
2011-10-06 21:47:06 -07:00
|
|
|
gem 'less', '~> 2.0'
|
2016-05-16 16:28:48 +09:00
|
|
|
gem 'mini_racer'
|
2013-12-27 11:20:50 +01:00
|
|
|
gem 'redcarpet'
|
|
|
|
gem 'wlang', '>= 2.0.1'
|
|
|
|
gem 'bluecloth'
|
|
|
|
gem 'rdiscount'
|
|
|
|
gem 'RedCloth'
|
2012-03-18 13:25:35 +01:00
|
|
|
gem 'puma'
|
2013-12-27 11:20:50 +01:00
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri'
|
|
|
|
gem 'thin'
|
2014-06-21 11:15:46 +02:00
|
|
|
gem 'slim', '~> 2.0'
|
2013-12-27 11:20:50 +01:00
|
|
|
gem 'coffee-script', '>= 2.0'
|
|
|
|
gem 'rdoc'
|
|
|
|
gem 'kramdown'
|
|
|
|
gem 'maruku'
|
|
|
|
gem 'creole'
|
2014-02-21 10:31:57 +01:00
|
|
|
gem 'wikicloth'
|
2013-12-27 11:20:50 +01:00
|
|
|
gem 'markaby'
|
|
|
|
gem 'radius'
|
2014-02-21 10:34:32 +01:00
|
|
|
gem 'asciidoctor'
|
2013-12-27 11:20:50 +01:00
|
|
|
gem 'liquid'
|
|
|
|
gem 'stylus'
|
|
|
|
gem 'rabl'
|
|
|
|
gem 'builder'
|
|
|
|
gem 'erubis'
|
|
|
|
gem 'haml', '>= 3.0'
|
2014-02-17 21:06:53 +05:30
|
|
|
gem 'sass'
|
2016-01-31 20:51:16 +09:00
|
|
|
gem 'reel-rack'
|
2016-05-08 15:03:28 +09:00
|
|
|
gem 'celluloid', '~> 0.16.0'
|
2016-10-28 17:08:52 +01:00
|
|
|
gem 'simplecov', require: false
|
2011-02-18 10:26:42 +01:00
|
|
|
end
|
|
|
|
|
2013-12-27 11:20:50 +01:00
|
|
|
if RUBY_ENGINE == "rbx"
|
|
|
|
gem 'json'
|
|
|
|
gem 'rubysl'
|
|
|
|
gem 'rubysl-test-unit'
|
2017-07-04 10:21:28 +02:00
|
|
|
gem 'erubi'
|
2013-12-27 11:20:50 +01:00
|
|
|
end
|
2012-05-13 20:59:49 +02:00
|
|
|
|
2015-07-26 22:51:25 -07:00
|
|
|
platforms :jruby do
|
|
|
|
gem 'json'
|
2011-02-26 15:48:14 +01:00
|
|
|
end
|