fastlane 1.97.0 → 1.97.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/.DS_Store +0 -0
- data/lib/fastlane/actions/appaloosa.rb +7 -2
- data/lib/fastlane/setup/crashlytics_beta.rb +2 -6
- data/lib/fastlane/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2c32f2ec51557a36543def006db2ed86f45b753a
|
4
|
+
data.tar.gz: 9bb0b73bf7b3667c5382341341708df5eb99f52a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: aea37770ce5d7b4560da9d6e8cfebaee9bbc8a3d4c293bbbb5f4fbf35b0ee15ba29af38b692995620c00b83f4234ee26bf104f9ee8604eddaa4960a333fc9883
|
7
|
+
data.tar.gz: c22439c24f9c64f29d711959d8abfb620d1ed493ca29c0464e1a9057ebffc9bc6f0a2dc6b811135a86e99c7a5a7d9220c7b2c4b8e91247458cf94d866d1a385a
|
data/lib/.DS_Store
ADDED
Binary file
|
@@ -10,7 +10,7 @@ module Fastlane
|
|
10
10
|
binary_url = get_binary_link(binary, api_key, store_id, params[:group_ids])
|
11
11
|
return if binary_url.nil?
|
12
12
|
screenshots_url = get_screenshots_links(api_key, store_id, params[:screenshots], params[:locale], params[:device])
|
13
|
-
upload_on_appaloosa(api_key, store_id, binary_url, screenshots_url, params[:group_ids])
|
13
|
+
upload_on_appaloosa(api_key, store_id, binary_url, screenshots_url, params[:group_ids], params[:description])
|
14
14
|
end
|
15
15
|
|
16
16
|
def self.get_binary_link(binary, api_key, store_id, group_ids)
|
@@ -95,7 +95,7 @@ module Fastlane
|
|
95
95
|
end.compact
|
96
96
|
end
|
97
97
|
|
98
|
-
def self.upload_on_appaloosa(api_key, store_id, binary_path, screenshots, group_ids)
|
98
|
+
def self.upload_on_appaloosa(api_key, store_id, binary_path, screenshots, group_ids, description)
|
99
99
|
screenshots = all_screenshots_links(screenshots)
|
100
100
|
uri = URI("#{APPALOOSA_SERVER}/#{store_id}/mobile_application_updates/upload")
|
101
101
|
http = Net::HTTP.new(uri.host, uri.port)
|
@@ -104,6 +104,7 @@ module Fastlane
|
|
104
104
|
req.body = { store_id: store_id,
|
105
105
|
api_key: api_key,
|
106
106
|
mobile_application_update: {
|
107
|
+
description: description,
|
107
108
|
binary_path: binary_path,
|
108
109
|
screenshot1: screenshots[0],
|
109
110
|
screenshot2: screenshots[1],
|
@@ -205,6 +206,10 @@ module Fastlane
|
|
205
206
|
FastlaneCore::ConfigItem.new(key: :device,
|
206
207
|
env_name: 'FL_APPALOOSA_DEVICE',
|
207
208
|
description: 'Select the device format for yours screenshots',
|
209
|
+
optional: true),
|
210
|
+
FastlaneCore::ConfigItem.new(key: :description,
|
211
|
+
env_name: 'FL_APPALOOSA_DESCRIPTION',
|
212
|
+
description: 'Your app description',
|
208
213
|
optional: true)
|
209
214
|
]
|
210
215
|
end
|
@@ -76,9 +76,7 @@ module Fastlane
|
|
76
76
|
gym(scheme: '#{scheme}')
|
77
77
|
crashlytics(api_token: '#{api_key}',
|
78
78
|
build_secret: '#{build_secret}',
|
79
|
-
notifications: false
|
80
|
-
emails: [],
|
81
|
-
groups: []
|
79
|
+
notifications: false
|
82
80
|
)
|
83
81
|
end
|
84
82
|
}
|
@@ -93,9 +91,7 @@ platform :ios do
|
|
93
91
|
gym(scheme: '#{scheme}')
|
94
92
|
crashlytics(api_token: '#{api_key}',
|
95
93
|
build_secret: '#{build_secret}',
|
96
|
-
notifications: false
|
97
|
-
emails: [],
|
98
|
-
groups: []
|
94
|
+
notifications: false
|
99
95
|
)
|
100
96
|
end
|
101
97
|
end
|
data/lib/fastlane/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.97.
|
4
|
+
version: 1.97.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2016-
|
18
|
+
date: 2016-07-01 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: krausefx-shenzhen
|
@@ -679,6 +679,7 @@ files:
|
|
679
679
|
- README.md
|
680
680
|
- bin/fastlane
|
681
681
|
- "bin/\U0001F680"
|
682
|
+
- lib/.DS_Store
|
682
683
|
- lib/assets/AppfileTemplate
|
683
684
|
- lib/assets/AppfileTemplateAndroid
|
684
685
|
- lib/assets/AvailablePlugins.md.erb
|