-
-
Notifications
You must be signed in to change notification settings - Fork 108
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
✨ Support eval_gemfile #248
base: main
Are you sure you want to change the base?
Conversation
end | ||
|
||
def build_gemspec(path = ".") | ||
Dir.mkdir("tmp/stage/#{path}") rescue nil |
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.
Style/RescueModifier: Avoid using rescue in its modifier form.
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 was an existing pattern in the tests I merely copied.
end | ||
|
||
def build_modular_gemfile | ||
Dir.mkdir("tmp/stage/gemfiles") rescue nil |
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.
Style/RescueModifier: Avoid using rescue in its modifier form.
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 was an existing pattern in the tests I merely copied.
I think the test suite was already broken before I made any changes @nickcharlton The new test I wrote for |
df372a1
to
9f19d18
Compare
eval_gemfile
#154