Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Downgrade Sinatra #76

Merged
merged 1 commit into from Sep 20, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 3 additions & 1 deletion madness.gemspec
Expand Up @@ -17,6 +17,9 @@ Gem::Specification.new do |s|
s.license = 'MIT'
s.required_ruby_version = ">= 2.2.2"

# we are locking sinatra to 2.0.3 due to this issue:
# https://github.com/sinatra/sinatra/issues/1476
s.add_runtime_dependency 'sinatra', '2.0.3'
s.add_runtime_dependency 'coderay', '~> 1.1'
s.add_runtime_dependency 'colsole', '~> 0.4'
s.add_runtime_dependency 'commonmarker', '~> 0.17'
Expand All @@ -28,7 +31,6 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'rack-contrib', '~> 2.0'
s.add_runtime_dependency 'requires', '~> 0.1'
s.add_runtime_dependency 'sass', '~> 3.4'
s.add_runtime_dependency 'sinatra', '~> 2.0'
s.add_runtime_dependency 'sinatra-contrib', '~> 2.0'
s.add_runtime_dependency 'slim', '~> 3.0'

Expand Down