Skip to content

Latest commit

 

History

History
55 lines (39 loc) · 3.15 KB

CONTRIBUTING.md

File metadata and controls

55 lines (39 loc) · 3.15 KB

Contributing to fastlane plugin create_xcframework

First of all, we want to thank you for you interest in this project. Every contribution matters, this is how we are keeping the project alive & the plugin up to date with the latest versions of Xcode. We are all owners, from Boris Bielik & Alexey Alter-Pesotskiy who initially created the plugin, to the people who use the plugin in their projects and participated in a conversation, improved the documentation, created an example or made any code changes. If you want to help, but don't know where to begin, we recommend you start small:

  • it would help a lot if you read: https://opensource.guide/how-to-contribute/
  • read the ongoing discussions to see what the overall status is
  • pitch in the converstations where you feel it's useful. Talk to other people, ask questions if you don't understand something
  • contributing to the documentation or the ongoing converstations is as important as contributing to the code

We want to make contributing to this project as easy and transparent as possible. Here are a few guidelines for making all our lives easier.

Contribute to ongoing conversations

If you have a valid opinion about something we are talking about, feel free to share it, either by opening an issue or the pull request against this repo. If you also encountered an issue that someone else described, pitch in. Better yet, if you already fixed it in a certain way, share that.

Improving documentation

A project's documentation is something you can always improve on. Make sure you go through the existing documentation and suggest changes or just create new pieces of documentation. Examples are also welcome.

Reporting Issues

A great way to contribute to the project is to send a detailed issue when you encounter an problem. It is very important to check for the same problem or suggestion in the project's issue list first. If you find a match, just add a small comment there. Doing this helps prioritize the most common problems and requests.

When reporting issues, please include the following:

  • The lane that uses the plugin
  • The plugin version
  • The Swift version/Swift toolchain being used.
  • The version of Xcode you're using
  • The full output of any stack trace or compiler error
  • A small demo project that replicates the issue (especially if the way to reproduce the issue is not straight-forward)
  • Any other details that would be useful in understanding the problem

This information will help us review and fix your issue faster.

Please do not be offended if we close your issue and reference this document. If you believe the issue is truely a fault in the project’s codebase, re-open it.

Pull Requests

We gladly accept any PR's assuming they are well written, documented ( if necessary ) and preferably have test code. If you're unsure if we'll accept a new feature please open an issue requesting it and we can have a discussion before you code and submit a PR.

Checklist:

  • Fork the repo and create your branch from the latest master (to minimize the conflicts)
  • If you've added code that should be tested, add tests.
  • If you've changed APIs, update the documentation.
  • Ensure the test suite passes.