gym 1.1.2 → 1.1.3

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: 6944cfb80160f5506beeb4ff366aa1b4a5976655
4
- data.tar.gz: aa317a2d17227d81386f49292403694bafecd09c
3
+ metadata.gz: 020ec63d70419e0a28373cd2c2d3f97f48ba6432
4
+ data.tar.gz: c455e8ce48f719140aa60362664ad50720f359df
5
5
  SHA512:
6
- metadata.gz: e0dcf0952065c72736b18ea708eafc30e4b4d7733c128e2f76524bfc7fae4f9b4397b861c4297b526e054a3f90eab4ec4de5db4a510af2cf230e530adf6f9084
7
- data.tar.gz: 7ad031aafc560c4e804a674c949169a9c8d782b0909f478f741505f1746f7915aea921411ba73a10ffea4f75f40bb3389c36dcc5e0696983296e82405c1ddc50
6
+ metadata.gz: 15cf760a9cdbad863c6390d74da6f5b489174157cc52943afc4ba6bcafe110f53a24e2e3ce7e47db547d69babecc9625644f0c8fc0a2910eabb6a2123076f607
7
+ data.tar.gz: 81792d8df1572563b13c4735c8938cead8b7920457309e241a865a452d4f6a31ae4fbcf5daedd1cc0b8fd6e2436e848b680119d48d9fbd9f8fb2c4264199cbda
@@ -86,7 +86,8 @@ module Gym
86
86
 
87
87
  # Makes sure the archive is there and valid
88
88
  def verify_archive
89
- if Dir[BuildCommandGenerator.archive_path + "/*"].count == 0
89
+ # from https://github.com/fastlane/gym/issues/115
90
+ if (Dir[BuildCommandGenerator.archive_path + "/*"] + Dir[BuildCommandGenerator.archive_path + ".xcarchive/*"]).count == 0
90
91
  ErrorHandler.handle_empty_archive
91
92
  end
92
93
  end
@@ -1,4 +1,4 @@
1
1
  module Gym
2
- VERSION = "1.1.2"
2
+ VERSION = "1.1.3"
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: 1.1.2
4
+ version: 1.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause