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
|
2013-03-07 20:43:46 -05:00
|
|
|
source 'https://rubygems.org' unless ENV['QUICK']
|
2011-09-02 16:54:49 -04:00
|
|
|
gemspec
|
2011-02-18 04:26:42 -05:00
|
|
|
|
|
|
|
gem 'rake'
|
2016-11-06 20:40:35 -05:00
|
|
|
gem 'rack', git: 'https://github.com/rack/rack.git'
|
2014-06-21 04:59:28 -04:00
|
|
|
gem 'rack-test', '>= 0.6.2'
|
2015-01-10 14:45:19 -05:00
|
|
|
gem "minitest", "~> 5.0"
|
2017-05-06 19:02:33 -04:00
|
|
|
gem 'yard'
|
2016-07-25 04:28:58 -04:00
|
|
|
|
2016-08-17 06:31:48 -04:00
|
|
|
gem "rack-protection", path: "rack-protection"
|
|
|
|
gem "sinatra-contrib", path: "sinatra-contrib"
|
2011-02-18 04:26:42 -05:00
|
|
|
|
2017-08-28 04:17:46 -04:00
|
|
|
gem "twitter-text", "1.14.7"
|
2016-12-30 00:46:47 -05:00
|
|
|
|
2011-07-21 08:00:40 -04:00
|
|
|
if RUBY_ENGINE == 'jruby'
|
|
|
|
gem 'nokogiri', '!= 1.5.0'
|
2012-05-13 16:32:18 -04:00
|
|
|
gem 'trinidad'
|
2011-07-21 08:00:40 -04:00
|
|
|
end
|
2011-05-20 08:17:59 -04:00
|
|
|
|
2015-07-27 01:51:25 -04:00
|
|
|
if RUBY_ENGINE == "ruby"
|
2011-10-07 00:47:06 -04:00
|
|
|
gem 'less', '~> 2.0'
|
2018-08-23 11:36:17 -04:00
|
|
|
gem 'therubyracer'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'redcarpet'
|
|
|
|
gem 'wlang', '>= 2.0.1'
|
|
|
|
gem 'bluecloth'
|
|
|
|
gem 'rdiscount'
|
|
|
|
gem 'RedCloth'
|
2018-04-28 04:33:47 -04:00
|
|
|
gem "activesupport", "~> 5.1.6"
|
2012-03-18 08:25:35 -04:00
|
|
|
gem 'puma'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri'
|
|
|
|
gem 'thin'
|
2014-06-21 05:15:46 -04:00
|
|
|
gem 'slim', '~> 2.0'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'coffee-script', '>= 2.0'
|
|
|
|
gem 'rdoc'
|
|
|
|
gem 'kramdown'
|
|
|
|
gem 'maruku'
|
|
|
|
gem 'creole'
|
2014-02-21 04:31:57 -05:00
|
|
|
gem 'wikicloth'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'markaby'
|
|
|
|
gem 'radius'
|
2014-02-21 04:34:32 -05:00
|
|
|
gem 'asciidoctor'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'liquid'
|
|
|
|
gem 'stylus'
|
|
|
|
gem 'rabl'
|
|
|
|
gem 'builder'
|
2018-11-04 11:41:24 -05:00
|
|
|
gem 'erubi'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'erubis'
|
|
|
|
gem 'haml', '>= 3.0'
|
2014-02-17 10:36:53 -05:00
|
|
|
gem 'sass'
|
2016-01-31 06:51:16 -05:00
|
|
|
gem 'reel-rack'
|
2016-05-08 02:03:28 -04:00
|
|
|
gem 'celluloid', '~> 0.16.0'
|
2019-04-28 12:02:45 -04:00
|
|
|
gem 'commonmarker', '~> 0.20.0'
|
2016-10-28 12:08:52 -04:00
|
|
|
gem 'simplecov', require: false
|
2011-02-18 04:26:42 -05:00
|
|
|
end
|
|
|
|
|
2013-12-27 05:20:50 -05:00
|
|
|
if RUBY_ENGINE == "rbx"
|
|
|
|
gem 'json'
|
|
|
|
gem 'rubysl'
|
|
|
|
gem 'rubysl-test-unit'
|
2017-07-04 04:21:28 -04:00
|
|
|
gem 'erubi'
|
2013-12-27 05:20:50 -05:00
|
|
|
end
|
2012-05-13 14:59:49 -04:00
|
|
|
|
2015-07-27 01:51:25 -04:00
|
|
|
platforms :jruby do
|
|
|
|
gem 'json'
|
2011-02-26 09:48:14 -05:00
|
|
|
end
|