fastlane 1.0.0 → 1.0.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: f9a7aab25062916851a13d92b840da16aee451eb
4
- data.tar.gz: 86a96f3e9773b64d41eb736f324b6ec956c40ce8
3
+ metadata.gz: c9fe9780f3952cbf892654c97f7997d4a91df5f0
4
+ data.tar.gz: d61534e4862c803e87de6b8ac56a74faf7920e13
5
5
  SHA512:
6
- metadata.gz: 0d62e6968031c18f2cbddb8562051937665d4aae4c3f38731a8d4797a1fdbfce56e3a9bd13ec3f4423df48b6380ecc0f718f1a06fd81e0654ca0da562284f028
7
- data.tar.gz: 52fa58663e1f24b8dadebac97f08e4a71de7f6f1423a090a587053cb8750bb6bb0c502cfd71ac6b0d870cc93fe472ecb0f54a209d0f4d500b4579d0d88440770
6
+ metadata.gz: 4d9d89f81596e1285260584f0ec8a91bf291f23d4d42406dc486641e675bc3bea85707caaf03a846cb2a5a9f2ccbb1a51f63191dadfb076ba8d7112f2bf4b437
7
+ data.tar.gz: d4d698e3a41e9f8b64b1ba2c4b00960962683ba5eee53e3d3dea43f8d3d40b46e8ef225f1d5b4c4e1ec49fbf29fe6370d14249e581c7602e228766d1f2f53fe7
@@ -50,8 +50,7 @@ module Fastlane
50
50
  Helper.log.info "Public Download URL: #{url}" if url
51
51
  Helper.log.info 'Build successfully uploaded to HockeyApp!'.green
52
52
  else
53
- Helper.log.fatal "Error uploading to HockeyApp: #{response.body}"
54
- raise 'Error when trying to upload ipa to HockeyApp'.red
53
+ raise "Error when trying to upload ipa to HockeyApp: #{response.body}".red
55
54
  end
56
55
  end
57
56
 
@@ -69,7 +68,7 @@ module Fastlane
69
68
  end),
70
69
  FastlaneCore::ConfigItem.new(key: :ipa,
71
70
  env_name: "FL_HOCKEY_IPA",
72
- description: "Path to your IPA file. Optional if you use the `ipa` or `xcodebuild` action",
71
+ description: "Path to your IPA file. Optional if you use the `ipa` or `xcodebuild` action. For Mac zip the .app",
73
72
  default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH],
74
73
  verify_block: Proc.new do |value|
75
74
  raise "Couldn't find ipa file at path '#{value}'".red unless File.exists?(value)
@@ -112,6 +111,10 @@ module Fastlane
112
111
  FastlaneCore::ConfigItem.new(key: :tags,
113
112
  env_name: "FL_HOCKEY_TAGS",
114
113
  description: "Comma separated list of tags which will receive access to the build",
114
+ optional: true),
115
+ FastlaneCore::ConfigItem.new(key: :public_identifier,
116
+ env_name: "FL_HOCKEY_PUBLIC_IDENTIFIER",
117
+ description: "Public identifier of the app you are targeting, usually you won't need this value",
115
118
  optional: true)
116
119
  ]
117
120
  end
@@ -128,7 +131,7 @@ module Fastlane
128
131
  end
129
132
 
130
133
  def self.is_supported?(platform)
131
- platform == :ios
134
+ [:ios, :mac].include?platform
132
135
  end
133
136
  end
134
137
  end
@@ -43,7 +43,7 @@ module Fastlane
43
43
  }
44
44
 
45
45
  def self.is_supported?(platform)
46
- platform == :ios
46
+ [:ios, :mac].include?platform
47
47
  end
48
48
 
49
49
  def self.run(params)
@@ -276,7 +276,7 @@ module Fastlane
276
276
  end
277
277
 
278
278
  def self.is_supported?(platform)
279
- platform == :ios
279
+ [:ios, :mac].include?platform
280
280
  end
281
281
 
282
282
  def self.available_options
@@ -306,7 +306,7 @@ module Fastlane
306
306
  end
307
307
 
308
308
  def self.is_supported?(platform)
309
- platform == :ios
309
+ [:ios, :mac].include?platform
310
310
  end
311
311
 
312
312
  def self.available_options
@@ -337,7 +337,7 @@ module Fastlane
337
337
  end
338
338
 
339
339
  def self.is_supported?(platform)
340
- platform == :ios
340
+ [:ios, :mac].include?platform
341
341
  end
342
342
 
343
343
  def self.available_options
@@ -379,7 +379,7 @@ module Fastlane
379
379
  end
380
380
 
381
381
  def self.is_supported?(platform)
382
- platform == :ios
382
+ [:ios, :mac].include?platform
383
383
  end
384
384
  end
385
385
 
@@ -407,7 +407,7 @@ module Fastlane
407
407
  end
408
408
 
409
409
  def self.is_supported?(platform)
410
- platform == :ios
410
+ [:ios, :mac].include?platform
411
411
  end
412
412
 
413
413
  def self.author
@@ -78,7 +78,7 @@ module Fastlane
78
78
  headings: ['Key', 'Description'],
79
79
  rows: output
80
80
  )
81
- puts "Access the output values using `Actions.lane_context[VARIABLE_NAME]`"
81
+ puts "Access the output values using `Actions.lane_context[Actions::SharedValues::VARIABLE_NAME]`"
82
82
  puts ""
83
83
  end
84
84
 
@@ -24,7 +24,9 @@ module Fastlane
24
24
  output << render(platform, lane, description)
25
25
  end
26
26
 
27
+ output << ""
27
28
  output << "----"
29
+ output << ""
28
30
  end
29
31
  end
30
32
 
@@ -1,3 +1,3 @@
1
1
  module Fastlane
2
- VERSION = '1.0.0'
2
+ VERSION = '1.0.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.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-05-05 00:00:00.000000000 Z
11
+ date: 2015-05-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: nokogiri
@@ -28,16 +28,16 @@ dependencies:
28
28
  name: shenzhen
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - ~>
31
+ - - '='
32
32
  - !ruby/object:Gem::Version
33
- version: 0.14.1
33
+ version: 0.14.0
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - ~>
38
+ - - '='
39
39
  - !ruby/object:Gem::Version
40
- version: 0.14.1
40
+ version: 0.14.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: slack-notifier
43
43
  requirement: !ruby/object:Gem::Requirement