1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/Gemfile

47 lines
1.2 KiB
Text
Raw Normal View History

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'
2022-07-14 23:03:31 -04:00
gem 'rack-test', '>= 0.6.2', '< 2'
gem "minitest", "~> 5.0"
2017-05-06 19:02:33 -04:00
gem 'yard'
gem "rack-protection", path: "rack-protection"
gem "sinatra-contrib", path: "sinatra-contrib"
2011-02-18 04:26:42 -05:00
2011-05-20 08:17:59 -04:00
gem "activesupport", "~> 6.1"
gem 'redcarpet', platforms: [ :ruby ]
gem 'rdiscount', platforms: [ :ruby ]
gem 'puma'
2021-01-08 12:47:42 -05:00
gem 'falcon', '~> 0.40', platforms: [ :ruby ]
gem 'yajl-ruby', platforms: [ :ruby ]
gem 'nokogiri', '> 1.5.0'
gem 'rainbows', platforms: [ :ruby ]
gem 'eventmachine'
gem 'slim', '~> 4'
gem 'rdoc'
gem 'kramdown'
gem 'markaby'
gem 'asciidoctor'
gem 'liquid'
gem 'rabl'
gem 'builder'
gem 'erubi'
gem 'haml', '~> 5'
gem 'commonmarker', '~> 0.20.0', platforms: [ :ruby ]
gem 'pandoc-ruby', '~> 2.0.2'
gem 'simplecov', require: false
gem 'json', platforms: [ :jruby, :mri ]