fastlane 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -2
- data/lib/fastlane/actions/xcodebuild.rb +8 -0
- data/lib/fastlane/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a2b562d1fafbac12f67b12cc30b13728f7ab0e37
|
|
4
|
+
data.tar.gz: 3617c1e228aad25ba9c2b785bea9d1405a603338
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b7b1513521bfd4f508c6acc18cc9e49bf192cc1974222c5da1c192a29d6d043b05a49baebb2758363d9c0ad738a8bdbce0c31b9154a1493c6a1df7d8cf9eee48
|
|
7
|
+
data.tar.gz: ea70445ede668df8b1515af734e89d1589deebf0ba3cfa7ee0723e0676f83dafa6997b73dd1ceda27fcc357c82593e38c7e95e1d1144177c3767b866bb61957f
|
data/README.md
CHANGED
|
@@ -49,7 +49,7 @@ Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/Kr
|
|
|
49
49
|
- Store data like the ```Bundle Identifier``` or your ```Apple ID``` once and use it across all tools
|
|
50
50
|
- Never remember any difficult commands, just ```fastlane```
|
|
51
51
|
- Easy setup, which helps you getting up and running very fast
|
|
52
|
-
- Shared context, which is used to let the different deployment steps communicate with each other
|
|
52
|
+
- [Shared context](https://github.com/KrauseFx/fastlane/blob/master/Advanced.md#lane-context), which is used to let the different deployment steps communicate with each other
|
|
53
53
|
- Store **everything** in git. Never lookup the used build commands in the ```Jenkins``` configs
|
|
54
54
|
- Saves you **hours** of preparing app submission, uploading screenshots and deploying the app for each update
|
|
55
55
|
- Very flexible configuration using a fully customizable `Fastfile`
|
|
@@ -141,6 +141,7 @@ When one command fails, the execution will be aborted.
|
|
|
141
141
|
### Building
|
|
142
142
|
- [ipa](https://github.com/KrauseFx/fastlane/blob/master/Actions.md#ipa): Build your app for further use of the [uploading](#uploading) section
|
|
143
143
|
- [xcode_select](https://github.com/KrauseFx/fastlane/blob/master/Actions.md#xcode_select): Set a path to a custom Xcode installation
|
|
144
|
+
- [xcodebuild](https://github.com/KrauseFx/fastlane/blob/master/Actions.md#xcodebuild): Archive, build, clean, test or export your app.
|
|
144
145
|
|
|
145
146
|
### Uploading
|
|
146
147
|
- [deliver](https://github.com/KrauseFx/fastlane/blob/master/Actions.md#deliver): Upload screenshots, metadata and your app to the App Store
|
|
@@ -279,7 +280,7 @@ lane :deploy do
|
|
|
279
280
|
snapshot
|
|
280
281
|
|
|
281
282
|
deliver :force
|
|
282
|
-
|
|
283
|
+
|
|
283
284
|
frameit
|
|
284
285
|
end
|
|
285
286
|
|
|
@@ -150,6 +150,14 @@ module Fastlane
|
|
|
150
150
|
end
|
|
151
151
|
end
|
|
152
152
|
|
|
153
|
+
class XcexportAction
|
|
154
|
+
def self.run(params)
|
|
155
|
+
params_hash = params.first || {}
|
|
156
|
+
params_hash[:export_archive] = true
|
|
157
|
+
XcodebuildAction.run([params_hash])
|
|
158
|
+
end
|
|
159
|
+
end
|
|
160
|
+
|
|
153
161
|
class XctestAction
|
|
154
162
|
def self.run(params)
|
|
155
163
|
params_hash = params.first || {}
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-03-
|
|
11
|
+
date: 2015-03-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -72,14 +72,14 @@ dependencies:
|
|
|
72
72
|
requirements:
|
|
73
73
|
- - ~>
|
|
74
74
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0.
|
|
75
|
+
version: '0.20'
|
|
76
76
|
type: :runtime
|
|
77
77
|
prerelease: false
|
|
78
78
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
79
|
requirements:
|
|
80
80
|
- - ~>
|
|
81
81
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '0.
|
|
82
|
+
version: '0.20'
|
|
83
83
|
- !ruby/object:Gem::Dependency
|
|
84
84
|
name: xcpretty
|
|
85
85
|
requirement: !ruby/object:Gem::Requirement
|