produce 0.4.2 → 0.4.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6c8535ff00250aa56e64345b0d84369c4cbaaf38
4
- data.tar.gz: 9f3d4a3503c12bf01cfa4e2f7623cb012640b963
3
+ metadata.gz: f51cfc56fcbb5c24d0f4424859656eac3333e927
4
+ data.tar.gz: 80c7d360a0069d441997358d4503ffdf7b8d01e9
5
5
  SHA512:
6
- metadata.gz: df90a274db846f821dcc3d05c3045d92fcb57ea0b5c2022d1ef5e9f802df4f951f2ff10fc7b795380751bd3bdf042ebec3c3ddfd94d25b396ed3c6eae9ed6e31
7
- data.tar.gz: aaf68be72fd3de71fdf740b9b69d1aa7353355f17de2dcaaf2d7671ad5c002916a553aa5fc9af404458fc57a6a7534b94c8c72827585a9a631c3b39fbe26fd69
6
+ metadata.gz: 7d12ce135c4fa0766f4f7094b723636abd609b450eb60cbb9e9d71bf60bfa30a022802047ef14b2197c967ede9dd6f60bf6d1871353b394e25ac9770d5658c90
7
+ data.tar.gz: 344004945594ac693c2e12ba35140c40643c0c72869ddf1c75689ca079296ad5332bdfe4f6eb83e6151ee2393a1f2b40074e04c64c8af4a44efc37d672e2b5c8
data/README.md CHANGED
@@ -13,7 +13,10 @@
13
13
  <a href="https://github.com/KrauseFx/sigh">sigh</a> &bull;
14
14
  <b>produce</b> &bull;
15
15
  <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
16
- <a href="https://github.com/KrauseFx/codes">codes</a>
16
+ <a href="https://github.com/KrauseFx/codes">codes</a> &bull;
17
+ <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
+ <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
+ <a href="https://github.com/fastlane/boarding">boarding</a>
17
20
  </p>
18
21
  -------
19
22
 
@@ -138,13 +141,16 @@ You'll still have to fill out the remaining information (like screenshots, app d
138
141
  ## [`fastlane`](https://fastlane.tools) Toolchain
139
142
 
140
143
  - [`fastlane`](https://fastlane.tools): Connect all deployment tools into one streamlined workflow
141
- - [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store using a single command
144
+ - [`deliver`](https://github.com/KrauseFx/deliver): Upload screenshots, metadata and your app to the App Store
142
145
  - [`snapshot`](https://github.com/KrauseFx/snapshot): Automate taking localized screenshots of your iOS app on every device
143
146
  - [`frameit`](https://github.com/KrauseFx/frameit): Quickly put your screenshots into the right device frames
144
147
  - [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
145
148
  - [`sigh`](https://github.com/KrauseFx/sigh): Because you would rather spend your time building stuff than fighting provisioning
146
149
  - [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
147
150
  - [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
151
+ - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
152
+ - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
153
+ - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
148
154
 
149
155
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
150
156
 
@@ -155,6 +161,8 @@ You'll still have to fill out the remaining information (like screenshots, app d
155
161
  # License
156
162
  This project is licensed under the terms of the MIT license. See the LICENSE file.
157
163
 
164
+ > This project and all fastlane tools are in no way affiliated with Apple Inc. This project is open source under the MIT license, which means you have full access to the source code and can modify it to fit your own needs. All fastlane tools run on your own computer or server, so your credentials or other sensitive information will never leave your own computer. You are responsible for how you use fastlane tools.
165
+
158
166
  # Contributing
159
167
 
160
168
  1. Create an issue to start a discussion about your idea
@@ -22,8 +22,10 @@ module Produce
22
22
  description: "App Identifier Suffix (Ignored if App Identifier does not ends with .*)"),
23
23
  FastlaneCore::ConfigItem.new(key: :app_name,
24
24
  env_name: "PRODUCE_APP_NAME",
25
+ short_option: "-q",
25
26
  description: "App Name"),
26
27
  FastlaneCore::ConfigItem.new(key: :version,
28
+ short_option: "-z",
27
29
  env_name: "PRODUCE_VERSION",
28
30
  description: "Initial version number (e.g. '1.0')"),
29
31
  FastlaneCore::ConfigItem.new(key: :sku,
@@ -32,6 +34,7 @@ module Produce
32
34
  default_value: Time.now.to_i.to_s,
33
35
  is_string: false), # false, as we also allow integers
34
36
  FastlaneCore::ConfigItem.new(key: :language,
37
+ short_option: "-m",
35
38
  env_name: "PRODUCE_LANGUAGE",
36
39
  description: "Primary Language (e.g. 'English', 'German')",
37
40
  default_value: "English",
@@ -1,3 +1,3 @@
1
1
  module Produce
2
- VERSION = "0.4.2"
2
+ VERSION = "0.4.3"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: produce
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.2
4
+ version: 0.4.3
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-07-20 00:00:00.000000000 Z
11
+ date: 2015-07-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core