-
Notifications
You must be signed in to change notification settings - Fork 523
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
Document import_from_gem #1157
base: master
Are you sure you want to change the base?
Document import_from_gem #1157
Conversation
@lacostej could you rebase your branch to trigger Netlify preview again? 🙏 |
40fd855
to
631cffc
Compare
631cffc
to
ebc036d
Compare
done |
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.
Just some nitpicks, otherwise LGTM 😊
import_from_gem(gem_name: 'my_gem', | ||
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) |
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.
uh weird indentation? 👀 Can we do e.g.:
import_from_gem(gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) | |
import_from_gem(gem_name: 'my_gem', paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) |
or
import_from_gem(gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) | |
import_from_gem( | |
gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*'], | |
) |
or
import_from_gem(gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) | |
import_from_gem(gem_name: 'my_gem', paths: [ | |
'fastlane/Fastfile', | |
'fastlane/Fastfile_*', | |
]) |
? 🙈
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.
The intended indentation might've been this:
import_from_gem(gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) | |
import_from_gem(gem_name: 'my_gem', | |
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*']) |
But I'm not a fan, hence why I suggested the 3 others above 😂 I'd pick the first one because I don't care much about horizontal line length, but the others are fine too
This is related to fastlane/fastlane#20294