gym 0.4.0 → 0.4.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 +4 -4
- data/lib/gym/detect_values.rb +1 -1
- data/lib/gym/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1528c03631780f4a91a2d4c7a8df2f3c7083234
|
|
4
|
+
data.tar.gz: bf38454fce0dc5e5937faac893f3074662be5d3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: dddf3ca3f386cb1dedef100913f897ed3b618d6257e1dd48493f4ea3943f9fa0cdcc9343dfb69f92cd79f95255c56aaa413d3cf84a376b8c5948cf15547e662c
|
|
7
|
+
data.tar.gz: f0f21347d00e1ccf9d8e612a8fc42b6706c9a817a00e719e7d82543c4a365d1686eb00e49f3eeb7179bc93335298b74378d728896ea634e06de1f6d9d3569ee3
|
data/lib/gym/detect_values.rb
CHANGED
|
@@ -129,7 +129,7 @@ module Gym
|
|
|
129
129
|
# Is it an iOS device or a Mac?
|
|
130
130
|
def self.detect_platform
|
|
131
131
|
return if Gym.config[:destination]
|
|
132
|
-
platform = Gym.project.build_settings("PLATFORM_DISPLAY_NAME") # either `iOS` or `OS X`
|
|
132
|
+
platform = Gym.project.build_settings("PLATFORM_DISPLAY_NAME") || "iOS" # either `iOS` or `OS X`
|
|
133
133
|
|
|
134
134
|
Gym.config[:destination] = "generic/platform=#{platform}"
|
|
135
135
|
end
|
data/lib/gym/version.rb
CHANGED