fastlane_core 0.1.0 → 0.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: bba431883f062fc0b42eca6e525b4a299214401a
4
- data.tar.gz: a01c9ca046143ca50a9c8574c2d85cfcfa41af1c
3
+ metadata.gz: b5643cf774b5e1dec8b6daf7aee5b83afc08e3bf
4
+ data.tar.gz: 0b7c7e644f5fb5ca37d05340fae2898cfcad210d
5
5
  SHA512:
6
- metadata.gz: 7ee079587326a09667ca0fdb355a63fa808063492ad8c0f58b7453eba5a57e6d719d9f1e685a2fef031d2a602ee12e948bac22a03b5c597dbd9fe46d7da506f8
7
- data.tar.gz: ab0561256f15a2906e4de8652ab8b080565e6b93c068fa98c9ac63d34e15c9da2b43d4afda11a6e71afa26d444022121532cb106a6708d8eb4d1bfe921fabf62
6
+ metadata.gz: 64596c49f7d9790726d1c666bd7cfe958e4c0d7c1d70d2a73f652885357b5553fdfc8f43e62292b99489106e7828c56484a56bf29244f9f8fbbed025bc0871c5
7
+ data.tar.gz: a54986ec47a7697ef5b9b445c9c916dcae8ae2bce0b5df2bd23af43e682d9c734a22a5b34e1d9dc9bf3db18c485ff64f446ab0666da3111dfa74ee22ca0fb1a2
@@ -33,7 +33,7 @@ module FastlaneCore
33
33
  end
34
34
 
35
35
  def snap
36
- path = "Error#{Time.now.to_i}.png"
36
+ path = File.expand_path("Error#{Time.now.to_i}.png")
37
37
  save_screenshot(path, :full => true)
38
38
  system("open '#{path}'") unless ENV['SIGH_DISABLE_OPEN_ERROR']
39
39
  end
@@ -1,5 +1,5 @@
1
1
  module FastlaneCore
2
- class DeveloperPortal
2
+ class DeveloperCenter
3
3
  # Returns a array of hashes, that contains information about the iOS certificate
4
4
  # @example
5
5
  # [{"certRequestId"=>"B23Q2P396B",
@@ -39,9 +39,9 @@ module FastlaneCore
39
39
  end
40
40
 
41
41
  def snap
42
- path = "Error#{Time.now.to_i}.png"
42
+ path = File.expand_path("Error#{Time.now.to_i}.png")
43
43
  save_screenshot(path, :full => true)
44
- system("open '#{path}'")
44
+ system("open '#{path}'") unless ENV['SIGH_DISABLE_OPEN_ERROR']
45
45
  end
46
46
 
47
47
  # Since Apple takes for ages, after the upload is properly processed, we have to wait here
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felix Krause