sinatra/Gemfile

59 lines
1.5 KiB
Ruby
Raw Normal View History

2011-02-18 09:26:42 +00:00
# Why use bundler?
2011-02-26 16:06:11 +00:00
# Well, not all development dependencies install on all rubies. Moreover, `gem
2011-02-18 09:26:42 +00: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 13:05:02 +00:00
# If you have issues with a gem: `bundle install --without-coffee-script`.
2011-02-18 09:26:42 +00:00
2022-02-05 12:09:10 +00:00
source 'https://rubygems.org'
2011-09-02 20:54:49 +00:00
gemspec
2011-02-18 09:26:42 +00:00
gem 'rake'
2022-02-02 21:03:43 +00:00
gem 'rack'
gem 'rack-test', '>= 0.6.2'
gem "minitest", "~> 5.0"
2017-05-06 23:02:33 +00:00
gem 'yard'
gem "rack-protection", path: "rack-protection"
gem "sinatra-contrib", path: "sinatra-contrib"
2011-02-18 09:26:42 +00:00
gem "twitter-text", "1.14.7"
2016-12-30 05:46:47 +00:00
2011-05-20 12:17:59 +00:00
gem "activesupport", "~> 5.1.6", platforms: [ :jruby, :mri ]
gem 'redcarpet', platforms: [ :mri ]
gem 'wlang', '>= 3.0.1'
gem 'bluecloth', platforms: [ :mri ]
gem 'rdiscount', platforms: [ :mri ]
gem 'RedCloth', platforms: [ :mri ]
gem 'puma', platforms: [ :jruby, :mri ]
gem 'yajl-ruby', platforms: [ :mri ]
gem 'nokogiri', '> 1.5.0', platforms: [ :jruby, :mri ]
gem 'rainbows', platforms: [ :mri ]
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 'erubis'
gem 'haml', '>= 3.0'
gem 'sass'
gem 'celluloid', '~> 0.16.0'
gem 'commonmarker', '~> 0.20.0', platforms: [ :mri ]
gem 'pandoc-ruby', '~> 2.0.2'
gem 'simplecov', require: false
gem 'json', platforms: [ :jruby, :mri ]