produce 0.6.0 → 0.6.1

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: 93cc031b37e351db3b6af36a95dc165bf9c57a4a
4
- data.tar.gz: 10bf2aad9349613fa910b4e74253c2d47ac1175e
3
+ metadata.gz: d0c071e272f557fe4052b9a3090eafa2dd3a8bb2
4
+ data.tar.gz: de915b61832fa41169c6b83eaec5389d2824b823
5
5
  SHA512:
6
- metadata.gz: 4ab86cf7c202be714a6ff6ea56e6a0f90d8f0a10f9a116686807492560e9099e39a6385146602754d89b813ef3e2ef372a3c75f9a419de70d91ec06b65c5cdd6
7
- data.tar.gz: 99cfc5623466c9135586bccc0917ae1a57aa60ba8fe31db4daca1723e4107251be799fd94993280f8253f795e5e07dd798c0a7ae8db54bd9e1105822f1e97a01
6
+ metadata.gz: 221345962e697d56ae80c23332b5645d5d7ef53359a76da1239d2978680f6ace62192e2223ab2fc6bca71251cc09fe62f821bc01b9fdb0061f23a094860093de
7
+ data.tar.gz: c468537b5c05193dd63be509cfb8b8bafc418476ac2b94de0dfb9eed1b89200d48a78a4777c57e3452c0f297f8c4746c3ebbf759c1302c099fe2b30f303dce5b
data/README.md CHANGED
@@ -16,7 +16,8 @@
16
16
  <a href="https://github.com/KrauseFx/codes">codes</a> &bull;
17
17
  <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
18
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
- <a href="https://github.com/fastlane/boarding">boarding</a>
19
+ <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
20
+ <a href="https://github.com/fastlane/gym">gym</a>
20
21
  </p>
21
22
  -------
22
23
 
@@ -114,22 +115,6 @@ If you want to associate an app with an App Group:
114
115
 
115
116
  # Parameters
116
117
 
117
- ```
118
- -u, --username STRING Your Apple ID Username (PRODUCE_USERNAME)
119
- -a, --app_identifier STRING App Identifier (Bundle ID, e.g. com.krausefx.app) (PRODUCE_APP_IDENTIFIER)
120
- -b, --bundle_identifier_suffix STRING App Identifier Suffix (Ignored if App Identifier does not ends with .*) (PRODUCE_APP_IDENTIFIER_SUFFIX)
121
- -a, --app_name STRING App Name (PRODUCE_APP_NAME)
122
- -v, --version STRING Initial version number (e.g. '1.0') (PRODUCE_VERSION)
123
- -s, --sku SKU Number (e.g. '1234') (PRODUCE_SKU)
124
- -l, --language STRING Primary Language (e.g. 'English', 'German') (PRODUCE_LANGUAGE)
125
- -i, --skip_itc Skip the creation of the app on iTunes Connect (PRODUCE_SKIP_ITC)
126
- -d, --skip_devcenter Skip the creation of the app on the Apple Developer Portal (PRODUCE_SKIP_DEVCENTER)
127
- -t, --team_id STRING The ID of your team if you're in multiple teams (PRODUCE_TEAM_ID)
128
- -l, --team_name STRING The name of your team if you're in multiple teams (PRODUCE_TEAM_NAME)
129
- -h, --help Display help documentation
130
- -v, --version Display version information
131
- ```
132
-
133
118
  Get a list of all available options using
134
119
 
135
120
  produce enable_services --help
@@ -227,23 +212,15 @@ You'll still have to fill out the remaining information (like screenshots, app d
227
212
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
228
213
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
229
214
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
215
+ - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
216
+
230
217
 
231
218
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
232
219
 
233
220
  # Need help?
234
- - If there is a technical problem with `produce`, submit an issue.
235
- - I'm available for contract work - drop me an email: produce@krausefx.com
221
+ Please submit an issue on GitHub and provide information about your setup
236
222
 
237
223
  # License
238
224
  This project is licensed under the terms of the MIT license. See the LICENSE file.
239
225
 
240
226
  > 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.
241
-
242
- # Contributing
243
-
244
- 1. Create an issue to start a discussion about your idea
245
- 2. Fork it (https://github.com/KrauseFx/produce/fork)
246
- 3. Create your feature branch (`git checkout -b my-new-feature`)
247
- 4. Commit your changes (`git commit -am 'Add some feature'`)
248
- 5. Push to the branch (`git push origin my-new-feature`)
249
- 6. Create a new Pull Request
data/bin/produce CHANGED
@@ -20,8 +20,6 @@ class ProduceApplication
20
20
  program :help, 'GitHub', 'https://github.com/krausefx/produce'
21
21
  program :help_formatter, :compact
22
22
 
23
- always_trace!
24
-
25
23
  FastlaneCore::CommanderGenerator.new.generate(Produce::Options.available_options)
26
24
 
27
25
  command :create do |c|
@@ -18,6 +18,7 @@ module Produce
18
18
  description: "App Identifier (Bundle ID, e.g. com.krausefx.app)",
19
19
  default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)),
20
20
  FastlaneCore::ConfigItem.new(key: :bundle_identifier_suffix,
21
+ short_option: "-e",
21
22
  env_name: "PRODUCE_APP_IDENTIFIER_SUFFIX",
22
23
  description: "App Identifier Suffix (Ignored if App Identifier does not ends with .*)"),
23
24
  FastlaneCore::ConfigItem.new(key: :app_name,
@@ -62,7 +63,7 @@ module Produce
62
63
  is_string: false,
63
64
  default_value: false),
64
65
  FastlaneCore::ConfigItem.new(key: :team_id,
65
- short_option: "-t",
66
+ short_option: "-b",
66
67
  env_name: "PRODUCE_TEAM_ID",
67
68
  description: "The ID of your team if you're in multiple teams",
68
69
  optional: true,
@@ -1,3 +1,3 @@
1
1
  module Produce
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
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.6.0
4
+ version: 0.6.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-08-11 00:00:00.000000000 Z
11
+ date: 2015-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -178,7 +178,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
178
178
  version: '0'
179
179
  requirements: []
180
180
  rubyforge_project:
181
- rubygems_version: 2.4.8
181
+ rubygems_version: 2.4.6
182
182
  signing_key:
183
183
  specification_version: 4
184
184
  summary: Create new iOS apps on iTunes Connect and Dev Portal using the command line