Commit 0db19268 authored by licong's avatar licong

最终完成

parents 7be26817 15ee858b
...@@ -14,7 +14,7 @@ PODS: ...@@ -14,7 +14,7 @@ PODS:
- AFNetworking/Serialization (3.1.0) - AFNetworking/Serialization (3.1.0)
- AFNetworking/UIKit (3.1.0): - AFNetworking/UIKit (3.1.0):
- AFNetworking/NSURLSession - AFNetworking/NSURLSession
- GMNetService (0.1.5): - GMNetService (0.1.6):
- AFNetworking (= 3.1.0) - AFNetworking (= 3.1.0)
DEPENDENCIES: DEPENDENCIES:
...@@ -26,7 +26,7 @@ EXTERNAL SOURCES: ...@@ -26,7 +26,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS: SPEC CHECKSUMS:
AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67 AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67
GMNetService: 9e958dedeb361fca66aba41efb48233c9c359e44 GMNetService: 18ca8fd55cf10e64b9e9071271a421076b4366ae
PODFILE CHECKSUM: 7ff46b43a8d5593b3f8ac864bad161c3754f2311 PODFILE CHECKSUM: 7ff46b43a8d5593b3f8ac864bad161c3754f2311
......
{ {
"name": "GMNetService", "name": "GMNetService",
"version": "0.1.5", "version": "0.1.6",
"summary": "A short description of GMNetService.", "summary": "A short description of GMNetService.",
"homepage": "http://git.gengmei.cc/gengmeiios/GMNetService", "homepage": "http://git.gengmei.cc/gengmeiios/GMNetService",
"license": "MIT", "license": "MIT",
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
}, },
"source": { "source": {
"git": "git@git.gengmei.cc:gengmeiios/GMNetService.git", "git": "git@git.gengmei.cc:gengmeiios/GMNetService.git",
"tag": "0.1.5" "tag": "0.1.6"
}, },
"platforms": { "platforms": {
"ios": "8.0" "ios": "8.0"
......
...@@ -14,7 +14,7 @@ PODS: ...@@ -14,7 +14,7 @@ PODS:
- AFNetworking/Serialization (3.1.0) - AFNetworking/Serialization (3.1.0)
- AFNetworking/UIKit (3.1.0): - AFNetworking/UIKit (3.1.0):
- AFNetworking/NSURLSession - AFNetworking/NSURLSession
- GMNetService (0.1.5): - GMNetService (0.1.6):
- AFNetworking (= 3.1.0) - AFNetworking (= 3.1.0)
DEPENDENCIES: DEPENDENCIES:
...@@ -26,7 +26,7 @@ EXTERNAL SOURCES: ...@@ -26,7 +26,7 @@ EXTERNAL SOURCES:
SPEC CHECKSUMS: SPEC CHECKSUMS:
AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67 AFNetworking: 5e0e199f73d8626b11e79750991f5d173d1f8b67
GMNetService: 9e958dedeb361fca66aba41efb48233c9c359e44 GMNetService: 18ca8fd55cf10e64b9e9071271a421076b4366ae
PODFILE CHECKSUM: 7ff46b43a8d5593b3f8ac864bad161c3754f2311 PODFILE CHECKSUM: 7ff46b43a8d5593b3f8ac864bad161c3754f2311
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>FMWK</string> <string>FMWK</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.1.5</string> <string>0.1.6</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
......
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
Pod::Spec.new do |s| Pod::Spec.new do |s|
s.name = "GMNetService" s.name = "GMNetService"
s.version = "0.1.5" s.version = "0.1.6"
s.summary = "A short description of GMNetService." s.summary = "A short description of GMNetService."
s.homepage = "http://git.gengmei.cc/gengmeiios/GMNetService" s.homepage = "http://git.gengmei.cc/gengmeiios/GMNetService"
s.license = 'MIT' s.license = 'MIT'
......
fastlane documentation fastlane documentation
================ ================
# Installation # Installation
Make sure you have the latest version of the Xcode command line tools installed:
``` ```
sudo gem install fastlane xcode-select --install
``` ```
## Choose your installation method:
<table width="100%" >
<tr>
<th width="33%"><a href="http://brew.sh">Homebrew</a></td>
<th width="33%">Installer Script</td>
<th width="33%">Rubygems</td>
</tr>
<tr>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS</td>
<td width="33%" align="center">macOS or Linux with Ruby 2.0.0 or above</td>
</tr>
<tr>
<td width="33%"><code>brew cask install fastlane</code></td>
<td width="33%"><a href="https://download.fastlane.tools/fastlane.zip">Download the zip file</a>. Then double click on the <code>install</code> script (or run it in a terminal window).</td>
<td width="33%"><code>sudo gem install fastlane -NV</code></td>
</tr>
</table>
# Available Actions # Available Actions
## iOS ## iOS
### ios do_deliver_app ### ios do_deliver_app
...@@ -16,14 +39,24 @@ Deploy a new version to the App Store ...@@ -16,14 +39,24 @@ Deploy a new version to the App Store
fastlane ios do_release_lib fastlane ios do_release_lib
``` ```
Release new private pod version Release new private pod version
### ios do_monkey_test ### ios do_publish_beta
```
fastlane ios do_publish_beta
```
Publish a beta version
### ios do_publish_test
```
fastlane ios do_publish_test
```
Publish a test version
### ios do_automation_test
``` ```
fastlane ios do_monkey_test fastlane ios do_automation_test
``` ```
UI automation test UI automation test
---- ----
This README.md is auto-generated and will be re-generated every time [fastlane](https://fastlane.tools) is run. 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 [https://fastlane.tools](https://fastlane.tools). More information about fastlane can be found on [fastlane.tools](https://fastlane.tools).
The documentation of fastlane can be found on [GitHub](https://github.com/fastlane/fastlane/tree/master/fastlane). The documentation of fastlane can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
...@@ -2,78 +2,80 @@ ...@@ -2,78 +2,80 @@
<testsuites> <testsuites>
<testsuite name="fastlane.lanes"> <testsuite name="fastlane.lanes">
<testcase classname="fastlane.lanes" name="0: Verifying required fastlane version" time="0.000609"> <testcase classname="fastlane.lanes" name="00: Verifying required fastlane version" time="0.000512">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="1: default_platform" time="0.000557"> <testcase classname="fastlane.lanes" name="01: default_platform" time="0.000269">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="2: import_from_git" time="0.473605"> <testcase classname="fastlane.lanes" name="02: import_from_git" time="0.696424">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="3: hipchat" time="0.070945"> <testcase classname="fastlane.lanes" name="03: hipchat" time="0.054985">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="4: git_pull" time="0.757596"> <testcase classname="fastlane.lanes" name="04: git_pull" time="0.904396">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="5: ensure_git_branch" time="0.007103"> <testcase classname="fastlane.lanes" name="05: ensure_git_branch" time="0.008256">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="6: pod_install" time="4.100667"> <testcase classname="fastlane.lanes" name="06: pod_install" time="10.497021">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="7: pod_lib_lint" time="24.937685"> <testcase classname="fastlane.lanes" name="07: pod_lib_lint" time="29.288459">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="8: version_bump_podspec" time="0.001267"> <testcase classname="fastlane.lanes" name="08: version_bump_podspec" time="0.001451">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="9: git_commit_all" time="0.035594"> <testcase classname="fastlane.lanes" name="09: git_commit_all" time="0.173356">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="10: add_git_tag" time="0.012354"> <testcase classname="fastlane.lanes" name="10: add_git_tag" time="0.013163">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="11: push_to_git_remote" time="0.84582"> <testcase classname="fastlane.lanes" name="11: push_to_git_remote" time="19.087793">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="12: pod_push" time="20.629064"> <testcase classname="fastlane.lanes" name="12: pod_push" time="51.672872">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="13: pod_repo_update" time="1.142557"> <testcase classname="fastlane.lanes" name="13: pod_repo_update" time="1.348587">
</testcase> </testcase>
<testcase classname="fastlane.lanes" name="14: hipchat" time="0.046406"> <testcase classname="fastlane.lanes" name="14: hipchat" time="0.66868">
</testcase> </testcase>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment