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
|
2022-02-05 07:09:10 -05:00
|
|
|
source 'https://rubygems.org'
|
2011-09-02 16:54:49 -04:00
|
|
|
gemspec
|
2011-02-18 04:26:42 -05:00
|
|
|
|
|
|
|
gem 'rake'
|
2022-02-02 16:03:43 -05:00
|
|
|
gem 'rack'
|
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'
|
2020-12-29 11:16:13 -05:00
|
|
|
gem 'puma'
|
2011-07-21 08:00:40 -04:00
|
|
|
end
|
2011-05-20 08:17:59 -04:00
|
|
|
|
2019-11-06 16:49:56 -05:00
|
|
|
if RUBY_ENGINE == 'jruby' || RUBY_ENGINE == 'ruby'
|
|
|
|
gem "activesupport", "~> 5.1.6"
|
|
|
|
end
|
|
|
|
|
2015-07-27 01:51:25 -04:00
|
|
|
if RUBY_ENGINE == "ruby"
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'redcarpet'
|
2021-01-07 17:53:42 -05:00
|
|
|
gem 'wlang', '>= 3.0.1'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'bluecloth'
|
|
|
|
gem 'rdiscount'
|
|
|
|
gem 'RedCloth'
|
2012-03-18 08:25:35 -04:00
|
|
|
gem 'puma'
|
2013-12-27 05:20:50 -05:00
|
|
|
gem 'yajl-ruby'
|
|
|
|
gem 'nokogiri'
|
2020-08-04 03:35:46 -04:00
|
|
|
gem 'rainbows'
|
|
|
|
gem 'eventmachine'
|
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 '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-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'
|
2019-04-28 14:09:32 -04:00
|
|
|
gem 'pandoc-ruby', '~> 2.0.2'
|
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
|