sinatra/Gemfile

52 lines
1.4 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-07-19 21:57:41 +00:00
rack_version = ENV['rack'].to_s
rack_version = nil if rack_version.empty? or rack_version == 'stable'
rack_version = {:github => 'rack/rack'} if rack_version == 'master'
gem 'rack', rack_version
2022-07-25 14:12:27 +00:00
gem 'rack-test', github: 'rack/rack-test'
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
2011-05-20 12:17:59 +00:00
gem "activesupport", "~> 6.1"
gem 'redcarpet', platforms: [ :ruby ]
gem 'rdiscount', platforms: [ :ruby ]
gem 'puma'
2021-01-08 17:47:42 +00:00
gem 'falcon', '~> 0.40', platforms: [ :ruby ]
gem 'yajl-ruby', platforms: [ :ruby ]
gem 'nokogiri', '> 1.5.0'
gem 'rainbows', platforms: [ :mri ] # uses #fork
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 ]