-
Notifications
You must be signed in to change notification settings - Fork 5
Conversation
52e0b7a
to
8cccfdf
Compare
8cccfdf
to
66f7356
Compare
Please feel free to merge this right away if it's good to go, don't wait for me to get back to it 🙂 |
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.
Approved, but not sure what features/support/server.js
is used for so didn't merge incase it can be removed.
|
||
Before do | ||
puts "Killing server..." | ||
system "for i in `ps axu | grep 'server.rb' | awk '{print $2}'`; do kill -9 $i; done > /dev/null 2>&1" | ||
system "for i in `ps axu | grep 'server.js' | awk '{print $2}'`; do kill -9 $i; done > /dev/null 2>&1" |
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.
Would pkill -9 node server.js
suffice?
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.
Perhaps, I'll be rewriting it in upcoming changes to address #6 as well.
🎉 This PR is included in version 1.0.0 🎉 The release is available on: Your semantic-release bot 📦🚀 |
Removing sinatra, the Ruby web framework. Replacing it with a primitive, native Node.js implementation. I considered using
express.js
, but it didn't seem to be worth all of its dependencies.Part of: apiaryio/dredd#917 (comment)