An open API service indexing awesome lists of open source software.

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

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]
```