Skip to content

Conversation

@lacostej
Copy link
Collaborator

This is related to fastlane/fastlane#20294

@rogerluan
Copy link
Member

@lacostej could you rebase your branch to trigger Netlify preview again? 🙏

@lacostej lacostej force-pushed the feature/import_from_gem branch from 40fd855 to 631cffc Compare January 18, 2024 07:34
@lacostej lacostej force-pushed the feature/import_from_gem branch from 631cffc to ebc036d Compare January 18, 2024 07:36
@lacostej
Copy link
Collaborator Author

@lacostej could you rebase your branch to trigger Netlify preview again? 🙏

done

Copy link
Member

@rogerluan rogerluan left a 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 😊

Comment on lines +125 to +126
import_from_gem(gem_name: 'my_gem',
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*'])
Copy link
Member

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.:

Suggested change
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

Suggested change
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

Suggested change
import_from_gem(gem_name: 'my_gem',
paths: ['fastlane/Fastfile', 'fastlane/Fastfile_*'])
import_from_gem(gem_name: 'my_gem', paths: [
'fastlane/Fastfile',
'fastlane/Fastfile_*',
])

? 🙈

Copy link
Member

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:

Suggested change
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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants