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
|
|
|
|
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-05-20 08:17:59 -04:00
|
|
|
|
2022-02-24 14:48:17 -05:00
|
|
|
gem "activesupport", "~> 6.1"
|
2022-02-24 11:42:18 -05:00
|
|
|
|
2022-02-24 14:26:28 -05:00
|
|
|
gem 'redcarpet', platforms: [ :ruby ]
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'wlang', '>= 3.0.1'
|
2022-02-24 14:26:28 -05:00
|
|
|
gem 'bluecloth', platforms: [ :ruby ]
|
|
|
|
gem 'rdiscount', platforms: [ :ruby ]
|
|
|
|
gem 'RedCloth', platforms: [ :ruby ]
|
|
|
|
gem 'puma'
|
|
|
|
gem 'yajl-ruby', platforms: [ :ruby ]
|
|
|
|
gem 'nokogiri', '> 1.5.0'
|
|
|
|
gem 'rainbows', platforms: [ :ruby ]
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'slim', '~> 2.0'
|
|
|
|
gem 'coffee-script', '>= 2.0'
|
|
|
|
gem 'rdoc'
|
|
|
|
gem 'kramdown'
|
|
|
|
gem 'maruku'
|
|
|
|
gem 'creole'
|
|
|
|
gem 'wikicloth'
|
|
|
|
gem 'markaby'
|
|
|
|
gem 'radius'
|
|
|
|
gem 'asciidoctor'
|
|
|
|
gem 'liquid'
|
|
|
|
gem 'rabl'
|
|
|
|
gem 'builder'
|
|
|
|
gem 'erubi'
|
|
|
|
gem 'haml', '>= 3.0'
|
|
|
|
gem 'sass'
|
|
|
|
gem 'celluloid', '~> 0.16.0'
|
2022-02-24 14:26:28 -05:00
|
|
|
gem 'commonmarker', '~> 0.20.0', platforms: [ :ruby ]
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'pandoc-ruby', '~> 2.0.2'
|
|
|
|
gem 'simplecov', require: false
|
|
|
|
|
|
|
|
gem 'json', platforms: [ :jruby, :mri ]
|