-
Notifications
You must be signed in to change notification settings - Fork 20
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
Added --host
support
#17
Conversation
jwhitcraft
commented
Jan 1, 2015
- For when you need to change the ip address.
- Added Tests
- Updated README
@@ -41,7 +41,8 @@ def build_rack_command | |||
command.push( | |||
options[:config], | |||
'--env', options[:environment].to_s, | |||
'--port', options[:port].to_s | |||
'--port', options[:port].to_s, | |||
'--host', options[:host].to_s |
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.
Nitpick: swap host and port, typically options host comes first.
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.
This is taken care of: https://github.com/dblock/guard-rack/pull/17/files#diff-46b6856b2f57a5f4eaf3d1e192a5469cR12
This is great, thanks. Please update CHANGELOG as well, and squash your commits. |
b185079
to
c203a22
Compare
@@ -1,7 +1,7 @@ | |||
2.1.0 (Next) | |||
============ | |||
|
|||
* Your contribution here. |
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.
Don't delete this, leave it underneath for the next person.
- For when you need to change the ip address. - Added Tests - Updated README - Added to Changelog
c203a22
to
0d536c5
Compare
Thanks! Merging. |