fastlane_core 0.13.0 → 0.13.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: 0011ee01a95219c1499b3aa939d022c704135857
4
- data.tar.gz: 80d7947e7d0b5bbb1cc01c324ba6ef8f619bcb41
3
+ metadata.gz: c55d019bd766d0ce92e3f8b3334be63e3f8a7a4d
4
+ data.tar.gz: 01814e896e25c5d79501dc1c6aade3dc40fc268f
5
5
  SHA512:
6
- metadata.gz: 062536d714a3075457181888db0899382d0c557321ff9192f3552f571b5321a1d42fa82493676e97a183f766d1cf188fc3752598cf9b00d8b68018ba442f7d06
7
- data.tar.gz: e170508572acede0f0bd43264150a7427cf2042cfb60d8a265830aaec47fd4350f5e578f25b46326b37e7300072675d1595be1bcd41890d2f37ae00d5e7c8a62
6
+ metadata.gz: dff01817eb4e419acc64fd00b80805d95105e9d77a78db26232a96954cea8446095b89970858ae9ae83afb9f8e4190613d862fd7c4030b40326598efe2985229
7
+ data.tar.gz: 8a964fe17413dac10113804263d3fd8bfc580af2cf94060d0b4586377e131c408c13a65586c72df48f3a7d52c547586bb13902b6cf474ddab7891489fc431101
@@ -13,6 +13,7 @@ module FastlaneCore
13
13
 
14
14
  raise "Short option #{short_option} already taken for key #{option.key}".red if short_codes.include?short_option
15
15
  raise "-v is already used for the version (key #{option.key})".red if short_option == "-v"
16
+ raise "-h is already used for the help screen (key #{option.key})".red if short_option == "-h"
16
17
 
17
18
  short_codes << short_option
18
19
  global_option short_option, "--#{option.key} #{appendix}", type, (option.description + " (#{option.env_name})")
@@ -26,7 +26,6 @@ module FastlaneCore
26
26
 
27
27
  plist = Plist::parse_xml(`security cms -D -i '#{path}'`)
28
28
  if (plist || []).count > 5
29
- Helper.log.info("Provisioning profile of app '#{plist['AppIDName']}' with the name '#{plist['Name']}' successfully analysed.".green)
30
29
  plist
31
30
  else
32
31
  Helper.log.error("Error parsing provisioning profile at path '#{path}'".red)
@@ -51,14 +50,15 @@ module FastlaneCore
51
50
  FileUtils.mkdir_p(profile_path)
52
51
  end
53
52
 
54
- # copy to Xcode provisioning profile directory
55
- FileUtils.copy(path, destination)
56
-
57
- if File.exists?(destination)
58
- return true
59
- else
60
- raise "Failed installation of provisioning profile at location: #{destination}".red
53
+ if path != destination
54
+ # copy to Xcode provisioning profile directory
55
+ FileUtils.copy(path, destination)
56
+ unless File.exist?(destination)
57
+ raise "Failed installation of provisioning profile at location: '#{destination}'".red
58
+ end
61
59
  end
60
+
61
+ true
62
62
  end
63
63
  end
64
64
  end
@@ -1,3 +1,3 @@
1
1
  module FastlaneCore
2
- VERSION = "0.13.0"
2
+ VERSION = "0.13.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.0
4
+ version: 0.13.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-08-11 00:00:00.000000000 Z
11
+ date: 2015-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - ">="
130
130
  - !ruby/object:Gem::Version
131
- version: 0.7.1
131
+ version: 0.7.2
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - ">="
137
137
  - !ruby/object:Gem::Version
138
- version: 0.7.1
138
+ version: 0.7.2
139
139
  - !ruby/object:Gem::Dependency
140
140
  name: phantomjs
141
141
  requirement: !ruby/object:Gem::Requirement