Delete Derived Data – Bash command by fragi February 17, 2022 0 Tools There are some times that we have to delete the derived data that Xcode produces.There are many ways to achieve... Read more
Detect unused code – Periphery by fragi February 15, 2022 0 Tools Codebases are growing over time (most of the times). They do also go after minor or major refactors. And regardless... Read more
XcodeGen by fragi January 28, 2022 0 Tools There are many benefits on using XcodeGen to create our Xcode project. Avoid merge conflicts on the project file Framework... Read more
Separate configuration from code – xcconfig by fragi January 27, 2022 0 Tools It is a best practice the separation of configuration from code.In this article we will use Configuration Settings File to... Read more
Git rebase with SourceTree by fragi May 13, 2021 0 Tools There are many benefits of having a source control. With source control we can check the history of a file,... Read more
Use Hound for automated code reviews by fragi May 13, 2021 0 Tools Hound can help a team to maintain its code style. Each time we create a pull request Hound will scan... Read more
Continuous Integration with TravisCI by fragi July 29, 2019 0 Tools In this article, we will setup TravisCI to add continuous integration support in our project: https://github.com/Fragki/SwiftLint-Example Open the GitHub page: https://github.com/Fragki/SwiftLint-Example From... Read more
Add SwiftLint to your iOS app by fragi July 26, 2019 0 Tools Why linting is important: Linting tools as SwiftLint do static analysis in our code. They will produce warnings or errors... Read more
Improve Pull Requests with Sequence Diagrams by fragi April 27, 2019 0 Tools Why we need Sequence Diagrams: Pull requests should be in general small in size, so to give the reviewer the... Read more