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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 39644b5edc2dc15d184e148343a4fd598c05824b
4
- data.tar.gz: ffbf924fabf2d8ad7fca508f8f771c4bbb80118a
3
+ metadata.gz: f1528c03631780f4a91a2d4c7a8df2f3c7083234
4
+ data.tar.gz: bf38454fce0dc5e5937faac893f3074662be5d3c
5
5
  SHA512:
6
- metadata.gz: 6c75c8a264274185e95ad63d2aad0079c2645be99de088e47636bc63360742883068f841a79726ac2bb4405eb37f8bddcfcd2de637e48a10f85b541d24c487ff
7
- data.tar.gz: 628b7f9238b30d12f4d9d38f81ec30603427546bf03881ef6b7d77ae1832d8747b63b65cb01b4658ef522854f57feddd255731b7a8a67d659bbbf3e784b6b44f
6
+ metadata.gz: dddf3ca3f386cb1dedef100913f897ed3b618d6257e1dd48493f4ea3943f9fa0cdcc9343dfb69f92cd79f95255c56aaa413d3cf84a376b8c5948cf15547e662c
7
+ data.tar.gz: f0f21347d00e1ccf9d8e612a8fc42b6706c9a817a00e719e7d82543c4a365d1686eb00e49f3eeb7179bc93335298b74378d728896ea634e06de1f6d9d3569ee3
@@ -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
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  DESCRIPTION = "Building your iOS apps has never been easier"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gym
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause