1
0
Fork 0
mirror of https://github.com/sinatra/sinatra synced 2023-03-27 23:18:01 -04:00
sinatra/Gemfile
Olle Jonsson 94fed10737 Use ActiveSupport 6.1 in Gemfile
Try to get a tzinfo dependency which is dependent on concurrent-ruby, so
that good things happen, instead of

    /home/runner/work/sinatra/sinatra/vendor/bundle/truffleruby/3.0.2.22.0.0/gems/tzinfo-1.2.9/lib/tzinfo/timezone.rb:653:in `const_missing': uninitialized constant ThreadSafe::Cache (NameError)

For context, see:
https://github.com/sinatra/sinatra/pull/1751#issuecomment-1050182714
2022-02-24 20:55:44 +01:00

58 lines
1.4 KiB
Ruby

# Why use bundler?
# Well, not all development dependencies install on all rubies. Moreover, `gem
# 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`.
#
# If you have issues with a gem: `bundle install --without-coffee-script`.
source 'https://rubygems.org'
gemspec
gem 'rake'
gem 'rack'
gem 'rack-test', '>= 0.6.2'
gem "minitest", "~> 5.0"
gem 'yard'
gem "rack-protection", path: "rack-protection"
gem "sinatra-contrib", path: "sinatra-contrib"
gem "twitter-text", "1.14.7"
gem "activesupport", "~> 6.1"
gem 'redcarpet', platforms: [ :ruby ]
gem 'wlang', '>= 3.0.1'
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 ]
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: [ :ruby ]
gem 'pandoc-ruby', '~> 2.0.2'
gem 'simplecov', require: false
gem 'json', platforms: [ :jruby, :mri ]