gym 1.1.0 → 1.1.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: bb940f821b6550c649b5605d8c45c3de6866dcf1
4
- data.tar.gz: f570f3dbc4faa8a84ef84020d56204f142bf1479
3
+ metadata.gz: 79dfb8579a4f43b6ab8165bcf93500cfbdd9b723
4
+ data.tar.gz: 2884e57d8f64a74a5a0e2081fb29e2e7714b8b93
5
5
  SHA512:
6
- metadata.gz: 36fceb2441cd64468ec425a5c7d867c938dcfc271f3c5e230379ab15bd6e5daf4317227762627ede776315330a3d55d2dc0b4880480389110d9fb029f80bae47
7
- data.tar.gz: d5d362b683b94f1fc3ae2500d7ae84a15033b0e847d2b9249e2ed529b526c76832a4743185832488afe358e85257c69a71bf641744c158979b854b4c586f94dd
6
+ metadata.gz: d429220279d8c699e0b67c223dc03feb8f2892c0d65ed633e191b0e7bf511f4aeb654d8b2b3a4af58077f57495111fd3e4f69fcdfd639d17304c9d315e5e0389
7
+ data.tar.gz: e4080f1eae5197c6686208235bbee8f66ea048f02d350f655a3622abe3a749952913f30752cc80535af3da5b192ec72c25cf21230de419cbe02be10fcbd2265e
data/README.md CHANGED
@@ -124,12 +124,15 @@ For a list of all available parameters use
124
124
 
125
125
  If you run into any issues, use the `verbose` mode to get more information
126
126
 
127
-
128
127
  gym --verbose
129
128
 
129
+ In general, if you run into issues while exporting the archive, try using:
130
+
131
+ gym --use_legacy_build_api true
132
+
130
133
  To pass boolean parameters make sure to use `gym` like this:
131
134
 
132
- gym --include_bitcode true --include_symbols true
135
+ gym --include_bitcode true --include_symbols false
133
136
 
134
137
  To access the raw `xcodebuild` output open `~/Library/Logs/gym`
135
138
 
@@ -70,8 +70,8 @@ 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]
74
73
  end
74
+ hash[:teamID] = Gym.config[:export_team_id] if Gym.config[:export_team_id]
75
75
 
76
76
  hash.to_plist
77
77
  end
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
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.1.0
4
+ version: 1.1.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-10-23 00:00:00.000000000 Z
11
+ date: 2015-10-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core