-
Notifications
You must be signed in to change notification settings - Fork 5.7k
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
[snapshot] Replace Objective-C-style NSMakeRange with Swift-style NSRange.init #15128
Conversation
Replace Objective-C-style NSMakeRange(0, simulator.count) with Swift-style NSRange(location: 0, length: simulator.count) (suggested by SwiftLint https://github.com/realm/SwiftLint). Delete empty line.
Thanks for your pull request. It looks like this may be your first contribution to a Google open source project (if not, look below for help). Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). 📝 Please visit https://cla.developers.google.com/ to sign. Once you've signed (or fixed any issues), please reply here with What to do if you already signed the CLAIndividual signers
Corporate signers
ℹ️ Googlers: Go here for more info. |
@googlebot I signed it! |
CLAs look good, thanks! ℹ️ Googlers: Go here for more info. |
Looks good. Could you please also increment the version in the last line of the file so this can be merged for release? Thanks. |
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.
Hey @RomanPodymov ,
Thanks for making this change 🙌
This is a very small improvement, but I think all users will enjoy it.
Absolutely 👍 Slowly, but surely we are making fastlane swift
better and better 😉
Thanks for the review @mollyIV (but this is actually not part of fastlane swift, but of the code that the apps run to be able to do |
Oh, you're right, |
Hey @RomanPodymov 👋 Thank you for your contribution to fastlane and congrats on getting this pull request merged 🎉 Please let us know if this change requires an immediate release by adding a comment here 👍 |
Congratulations! 🎉 This was released as part of fastlane 2.129.0 🚀 |
🔑 Checklist
bundle exec rspec
from the root directory to see all new and existing tests passbundle exec rubocop -a
to ensure the code style is validMotivation and Context
Get the following message in SnapshotHelper.swift line 182 when running swiftlint: Swift constructors are preferred over legacy convenience functions. I think it would be great to use modern Swift API in fastlane.
This is a very small improvement, but I think all users will enjoy it.
Description
Replace Objective-C-style
NSMakeRange(0, simulator.count)
with Swift-styleNSRange(location: 0, length: simulator.count)
(suggested by swiftlint https://github.com/realm/SwiftLint). Delete empty line.To test my changes I replaced SnapshotHelper.swift from the tag fastlane/2.128.1 with my version of SnapshotHelper.swift and run
capture_screenshots
. Fastlane generated the same screenshots successfully.