-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
Drop thin support #1627
Drop thin support #1627
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Ryuichi, thanks for working on this! Mostly looks good, but please review a few points I commented.
c6d3e34
to
7010c30
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hey Ryuichi,
Thanks for continuing your efforts. Please take a look at my comments.
a032ccb
to
96d1f0b
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM with a few nits. Thanks so much for your hard working on the complex issue!
@@ -3,7 +3,6 @@ | |||
# run *one* of these: | |||
# | |||
# rackup -s mongrel stream.ru # gem install mongrel | |||
# thin -R stream.ru start # gem install thin |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please copy test/integration/rainbows.conf
here and add rainbows -c rainbows.conf stream.ru
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed 7a96472
test/integration/app.rb
Outdated
@@ -1,6 +1,10 @@ | |||
$stderr.puts "loading" | |||
require 'sinatra' | |||
|
|||
if RUBY_ENGINE == "ruby" | |||
require_relative './rainbows' | |||
end |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
require_relative 'rainbows' if RUBY_ENGINE == 'ruby'
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
96d1f0b
to
7a96472
Compare
@namusyaka I fixed. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome!
Great work @rkmathi! 💯 👏 |
Update README.es.md to follow #1627
Update README.ja.md to follow #1627
fixes #1624
Remove thin to drop support.
Use puma or rainbows instead of thin.