gym 1.0.0 → 1.1.0
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 +5 -5
- data/lib/gym/generators/package_command_generator_xcode7.rb +1 -0
- data/lib/gym/options.rb +5 -0
- data/lib/gym/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bb940f821b6550c649b5605d8c45c3de6866dcf1
|
|
4
|
+
data.tar.gz: f570f3dbc4faa8a84ef84020d56204f142bf1479
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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> •
|
|
11
11
|
<a href="https://github.com/KrauseFx/frameit">frameit</a> •
|
|
12
12
|
<a href="https://github.com/KrauseFx/PEM">PEM</a> •
|
|
13
|
-
<a href="https://github.com/
|
|
13
|
+
<a href="https://github.com/KrauseFx/sigh">sigh</a> •
|
|
14
14
|
<a href="https://github.com/KrauseFx/produce">produce</a> •
|
|
15
15
|
<a href="https://github.com/KrauseFx/cert">cert</a> •
|
|
16
|
-
<a href="https://github.com/KrauseFx/codes">codes</a> •
|
|
17
16
|
<a href="https://github.com/fastlane/spaceship">spaceship</a> •
|
|
18
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
|
19
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
|
20
|
-
<b>gym</b>
|
|
19
|
+
<b>gym</b> •
|
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a>
|
|
21
21
|
</p>
|
|
22
22
|
-------
|
|
23
23
|
|
|
24
24
|
<p align="center">
|
|
25
|
-
|
|
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
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.
|
|
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-
|
|
11
|
+
date: 2015-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|