https://github.com/digipolitan/fastlane-ios
fastlane basic iOS actions / lanes
https://github.com/digipolitan/fastlane-ios
fastlane ios tests xcodeproj
Last synced: 3 months ago
JSON representation
fastlane basic iOS actions / lanes
- Host: GitHub
- URL: https://github.com/digipolitan/fastlane-ios
- Owner: Digipolitan
- License: bsd-3-clause
- Created: 2016-12-22T11:08:09.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-09T17:54:47.000Z (over 6 years ago)
- Last Synced: 2025-01-17T00:20:16.541Z (4 months ago)
- Topics: fastlane, ios, tests, xcodeproj
- Language: Ruby
- Homepage:
- Size: 20.5 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
Digipolitan fastlane-ios
================Create iOS actions used by sub Digipolitan fastlane-repositories
## Installation
To install fastlane, simply use gem:```
[sudo] gem install fastlane
```# Available Fastlane Lanes
All lanes available are described [here](fastlane/README.md)# Available Fastlane actions
## [get_project_info](fastlane/actions/get_project_info.rb)
Retrieves project informations, such as info_plist path, project name, ...
```Ruby
project_info = get_project_info(xcodeproj: "/example/test.xcodeproj")
print project_info[:name]
```