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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 41deea85e90a3c3de637b3c55f95bdceb4fca899
4
- data.tar.gz: 2f7d740201ef993271150ba62605b699336607e6
3
+ metadata.gz: a2b562d1fafbac12f67b12cc30b13728f7ab0e37
4
+ data.tar.gz: 3617c1e228aad25ba9c2b785bea9d1405a603338
5
5
  SHA512:
6
- metadata.gz: fa6d53fe8188f8f36a77137a328690047fe864c355cda13496adb8db18422077dca3ad66a86f5219811072f752f6a6ee17c6fb50b95be527817b79861a244044
7
- data.tar.gz: 9e0045c158b5028454c5295e4e026fb1809af3e29af866c5b99f272c423ede03fe838803277792b64294831f776cba0547984f5fc778854ab9e53a2c557f9fb1
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 || {}
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '0.2.0'
2
+ VERSION = '0.2.1'
3
3
  end
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.0
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-09 00:00:00.000000000 Z
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.22'
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.22'
82
+ version: '0.20'
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: xcpretty
85
85
  requirement: !ruby/object:Gem::Requirement