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 +4 -4
- data/lib/fastlane/actions/hockey.rb +7 -4
- data/lib/fastlane/actions/xcodebuild.rb +6 -6
- data/lib/fastlane/actions_list.rb +1 -1
- data/lib/fastlane/docs_generator.rb +2 -0
- data/lib/fastlane/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c9fe9780f3952cbf892654c97f7997d4a91df5f0
|
|
4
|
+
data.tar.gz: d61534e4862c803e87de6b8ac56a74faf7920e13
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
|
data/lib/fastlane/version.rb
CHANGED
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.
|
|
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-
|
|
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.
|
|
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.
|
|
40
|
+
version: 0.14.0
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: slack-notifier
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|