gym 1.0.0 → 1.1.0

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: caeea23f88216dd183d1848e6f2c02810e3f7bf3
4
- data.tar.gz: d4d65e88910033eaedf15d44f328fb7d75de6c8f
3
+ metadata.gz: bb940f821b6550c649b5605d8c45c3de6866dcf1
4
+ data.tar.gz: f570f3dbc4faa8a84ef84020d56204f142bf1479
5
5
  SHA512:
6
- metadata.gz: 481af33ef8b8108a7ebf7062b65a9ea39502d0db8d58f11aace74988ac02d259d4a7ac4f0df9e352993d1517ad38bd753e25f88062cc1e4c9960385fae83c91a
7
- data.tar.gz: 3682baea7db87dadf2acb71e29d4b2d3a5f87f3e7bb04682213feec2a3606e752bbb95871b441836a571f971ff2cc42ba7cb6ae033a09aa75e451b20a608e92c
6
+ metadata.gz: 36fceb2441cd64468ec425a5c7d867c938dcfc271f3c5e230379ab15bd6e5daf4317227762627ede776315330a3d55d2dc0b4880480389110d9fb029f80bae47
7
+ data.tar.gz: d5d362b683b94f1fc3ae2500d7ae84a15033b0e847d2b9249e2ed529b526c76832a4743185832488afe358e85257c69a71bf641744c158979b854b4c586f94dd
data/README.md CHANGED
@@ -10,19 +10,19 @@
10
10
  <a href="https://github.com/KrauseFx/snapshot">snapshot</a> &bull;
11
11
  <a href="https://github.com/KrauseFx/frameit">frameit</a> &bull;
12
12
  <a href="https://github.com/KrauseFx/PEM">PEM</a> &bull;
13
- <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
13
+ <a href="https://github.com/KrauseFx/sigh">sigh</a> &bull;
14
14
  <a href="https://github.com/KrauseFx/produce">produce</a> &bull;
15
15
  <a href="https://github.com/KrauseFx/cert">cert</a> &bull;
16
- <a href="https://github.com/KrauseFx/codes">codes</a> &bull;
17
16
  <a href="https://github.com/fastlane/spaceship">spaceship</a> &bull;
18
17
  <a href="https://github.com/fastlane/pilot">pilot</a> &bull;
19
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
20
- <b>gym</b>
19
+ <b>gym</b> &bull;
20
+ <a href="https://github.com/fastlane/scan">scan</a>
21
21
  </p>
22
22
  -------
23
23
 
24
24
  <p align="center">
25
- <img src="assets/gym.png">
25
+ <img src="assets/gym.png" height="110">
26
26
  </p>
27
27
 
28
28
  gym
@@ -229,10 +229,10 @@ Afterwards the `ipa` file is moved to the output folder. The `dSYM` file is comp
229
229
  - [`PEM`](https://github.com/KrauseFx/pem): Automatically generate and renew your push notification profiles
230
230
  - [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
231
231
  - [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
232
- - [`codes`](https://github.com/KrauseFx/codes): Create promo codes for iOS Apps using the command line
233
232
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
234
233
  - [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
235
234
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
235
+ - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
236
236
 
237
237
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
238
238
 
@@ -70,6 +70,7 @@ module Gym
70
70
  if Gym.config[:export_method] == 'app-store'
71
71
  hash[:uploadSymbols] = (Gym.config[:include_symbols] ? true : false)
72
72
  hash[:uploadBitcode] = (Gym.config[:include_bitcode] ? true : false)
73
+ hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
73
74
  end
74
75
 
75
76
  hash.to_plist
data/lib/gym/options.rb CHANGED
@@ -135,6 +135,11 @@ module Gym
135
135
  env_name: "GYM_DESTINATION",
136
136
  description: "Use a custom destination for building the app",
137
137
  optional: true),
138
+ FastlaneCore::ConfigItem.new(key: :export_team_id,
139
+ short_option: "-g",
140
+ env_name: "GYM_EXPORT_TEAM_ID",
141
+ description: "Optional: Sometimes you need to specify a team id when exporting the ipa file",
142
+ optional: true),
138
143
  FastlaneCore::ConfigItem.new(key: :xcargs,
139
144
  short_option: "-x",
140
145
  env_name: "GYM_XCARGS",
data/lib/gym/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "1.0.0"
2
+ VERSION = "1.1.0"
3
3
  DESCRIPTION = "Building your iOS apps has never been easier"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gym
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
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-10-19 00:00:00.000000000 Z
11
+ date: 2015-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core