-
Notifications
You must be signed in to change notification settings - Fork 32
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
Fix #36: No --verbose --help backtrace #37
Fix #36: No --verbose --help backtrace #37
Conversation
Required for the examples
So we need to pay less attention to implementation details in the specs for mocking the right methods
end | ||
error.should.not.nil? | ||
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.
Does this not work with the following?
should.raise SystemExit do
raise SystemExit
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.
Right. This could be stated simpler. In the helper method or directly in the specs?
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.
Directly in the specs please.
Besides that question this all looks good to me. Great work! Once I have your answer I will merge this. |
@@ -4,6 +4,7 @@ gem 'rake' | |||
|
|||
group :development do | |||
gem 'kicker' | |||
gem 'colored' # for examples |
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.
Why is this included?
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.
Because examples/make.rb has a static require 'colored'
.
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.
I think that it can just be removed from the examples. Now Xcodeproj vendors its on ANSI stuff
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.
But this is a separate issue, isn't 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.
It would have been but this was included in the path. Anyway I agree lets leave it for another issue.
Fix #36: No --verbose --help backtrace
Ace work! 👍 |
Fixes #36.