Skip to content

Commit

Permalink
Fix SwiftPM build
Browse files Browse the repository at this point in the history
  • Loading branch information
fassko committed Sep 28, 2019
1 parent 1524a43 commit 19123ee
Show file tree
Hide file tree
Showing 4 changed files with 68 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -125,3 +125,4 @@ Icon
Network Trash Folder
Temporary Items
.apdisk
/.build
16 changes: 15 additions & 1 deletion Package.swift
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
// swift-tools-version:5.1

import PackageDescription

let package = Package(
name: "Localize_Swift"
name: "Localize_Swift",
products: [
.library(
name: "Localize_Swift",
targets: ["Localize_Swift"]),
],
dependencies: [],
targets: [
.target(
name: "Localize_Swift",
path: "Sources")
],
swiftLanguageVersions: [.v5]
)
29 changes: 29 additions & 0 deletions fastlane/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
fastlane documentation
================
# Installation

Make sure you have the latest version of the Xcode command line tools installed:

```
xcode-select --install
```

Install _fastlane_ using
```
[sudo] gem install fastlane -NV
```
or alternatively using `brew cask install fastlane`

# Available Actions
## iOS
### ios release
```
fastlane ios release
```
Depoy new version

----

This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run.
More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
23 changes: 23 additions & 0 deletions fastlane/report.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<testsuites>
<testsuite name="fastlane.lanes">




<testcase classname="fastlane.lanes" name="0: default_platform" time="0.007512">

</testcase>


<testcase classname="fastlane.lanes" name="1: update_fastlane" time="2.189449">

</testcase>


<testcase classname="fastlane.lanes" name="2: pod_push" time="113.053739">

</testcase>

</testsuite>
</testsuites>

0 comments on commit 19123ee

Please sign in to comment.