2022-07-31 08:56:44 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
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-07-19 17:57:41 -04:00
|
|
|
|
|
|
|
rack_version = ENV['rack'].to_s
|
2022-07-31 08:56:44 -04:00
|
|
|
rack_version = nil if rack_version.empty? || (rack_version == 'stable')
|
2022-11-08 13:19:43 -05:00
|
|
|
rack_version = { github: 'rack/rack' } if rack_version == 'latest'
|
2022-07-19 17:57:41 -04:00
|
|
|
gem 'rack', rack_version
|
|
|
|
|
2022-11-08 13:19:43 -05:00
|
|
|
puma_version = ENV['puma'].to_s
|
|
|
|
puma_version = nil if puma_version.empty? || (puma_version == 'stable')
|
|
|
|
puma_version = { github: 'puma/puma' } if puma_version == 'latest'
|
|
|
|
gem 'puma', puma_version
|
|
|
|
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'minitest', '~> 5.0'
|
|
|
|
gem 'rubocop', '~> 1.32.0', require: false
|
2017-05-06 19:02:33 -04:00
|
|
|
gem 'yard'
|
2016-07-25 04:28:58 -04:00
|
|
|
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'rack-protection', path: 'rack-protection'
|
|
|
|
gem 'sinatra-contrib', path: 'sinatra-contrib'
|
2011-05-20 08:17:59 -04:00
|
|
|
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'activesupport', '~> 6.1'
|
2022-02-24 11:42:18 -05:00
|
|
|
|
|
|
|
gem 'asciidoctor'
|
|
|
|
gem 'builder'
|
2022-08-02 13:48:40 -04:00
|
|
|
gem 'commonmarker', '~> 0.23.4', platforms: [:ruby]
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'erubi'
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'eventmachine'
|
|
|
|
gem 'falcon', '~> 0.40', platforms: [:ruby]
|
2022-12-23 20:57:59 -05:00
|
|
|
gem 'haml', '~> 6'
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'kramdown'
|
|
|
|
gem 'liquid'
|
|
|
|
gem 'markaby'
|
|
|
|
gem 'nokogiri', '> 1.5.0'
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'pandoc-ruby', '~> 2.0.2'
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'rabl'
|
|
|
|
gem 'rainbows', platforms: [:mri] # uses #fork
|
|
|
|
gem 'rdiscount', platforms: [:ruby]
|
|
|
|
gem 'rdoc'
|
|
|
|
gem 'redcarpet', platforms: [:ruby]
|
2022-02-24 11:42:18 -05:00
|
|
|
gem 'simplecov', require: false
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'slim', '~> 4'
|
|
|
|
gem 'yajl-ruby', platforms: [:ruby]
|
2022-02-24 11:42:18 -05:00
|
|
|
|
2022-07-31 08:56:44 -04:00
|
|
|
gem 'json', platforms: %i[jruby mri]
|
2022-08-08 09:41:59 -04:00
|
|
|
|
|
|
|
gem 'jar-dependencies', '= 0.4.1', platforms: [:jruby] # Gem::LoadError with jar-dependencies 0.4.2
|