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

Update sinatra to 2.0.5 #16

Merged
merged 1 commit into from Jan 4, 2019
Merged
Show file tree
Hide file tree
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
3 changes: 0 additions & 3 deletions Gemfile
@@ -1,16 +1,13 @@
source "https://rubygems.org"

gem 'byebug'
gem 'github_changelog_generator'
gem 'lp'
gem 'rack-test'
gem 'rdoc'
gem 'rspec'
gem 'rspec-html-matchers'
gem 'rspec_fixtures'
gem 'runfile'
gem 'runfile-tasks'
gem 'simplecov'
gem 'yard'

gemspec
6 changes: 0 additions & 6 deletions Runfile
Expand Up @@ -9,7 +9,6 @@ version Madman::VERSION

RunfileTasks::RubyGems.all 'madman'
RunfileTasks::Testing.rspec
RunfileTasks::Docs.rdoc

usage_commands = {
'usage' => 'madman',
Expand All @@ -25,11 +24,6 @@ usage_commands = {
'readme-help' => 'madman readme --help',
}

help "Run YARD server"
action :yard do
run "yard server -p3000 -B0.0.0.0 -r"
end

help "Run interactive console"
action :console, :c do
run "bundle exec bin/console"
Expand Down
6 changes: 2 additions & 4 deletions madman.gemspec
Expand Up @@ -17,14 +17,12 @@ Gem::Specification.new do |s|
s.license = 'MIT'
s.required_ruby_version = ">= 2.4.0"

# 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 'sinatra', '~> 2.0.5'
s.add_runtime_dependency 'requires', '~> 0.1'
s.add_runtime_dependency 'commonmarker', '~> 0.17'
s.add_runtime_dependency 'mister_bin', '~> 0.6'
s.add_runtime_dependency 'puma', '~> 3.11'
s.add_runtime_dependency 'sinatra-contrib', '~> 2.0'
s.add_runtime_dependency 'sinatra-contrib', '~> 2.0.5'
s.add_runtime_dependency 'slim', '~> 4.0'
s.add_runtime_dependency 'colsole', '~> 0.5'
s.add_runtime_dependency 'string-direction', '~> 1.2'
Expand Down