fastlane-plugin-polidea 0.6.4 → 1.0.0.pre
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/README.md +2 -2
- data/lib/fastlane/plugin/polidea/actions/{mailgun.rb → fota_mail.rb} +1 -1
- data/lib/fastlane/plugin/polidea/actions/{s3.rb → fota_s3.rb} +1 -1
- data/lib/fastlane/plugin/polidea/actions/polidea_store.rb +4 -0
- data/lib/fastlane/plugin/polidea/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: 24cb6b4990f9df96baf13a4d87042c29c0d58511
|
|
4
|
+
data.tar.gz: d821ae3f09c6f3a26aff561f0b1f96676fc5e6bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb90f970a5776ffd5ed4d73eacc46e5221c304b195af7060ecb3ad0f95590e18680dca39f0385d00aac31b9f4ec9385114c6d40076e803dd439a272acaf144d1
|
|
7
|
+
data.tar.gz: b6e8ce80330823d299e937e2fe78eee9722247fc182a0d7c2fb3a1c45c665772f5b319a83b7a64d9dc6093f52337063d021ae00d8d4d3790a57be3d4bae36465
|
data/README.md
CHANGED
|
@@ -20,7 +20,7 @@ Plugin contains following actions:
|
|
|
20
20
|
- `extract_version`: Extracts app version and build number from .ipa/.apk
|
|
21
21
|
- `get_binary_size`: Measures binary size in bytes
|
|
22
22
|
- `s3`: Custom version of s3 action with Polidea's installation page
|
|
23
|
-
- `
|
|
23
|
+
- `fota_mail`: Custom version of mailgun action with Polidea's mail template
|
|
24
24
|
- `polidea_store`: Notifies Polidea Store about new app version
|
|
25
25
|
|
|
26
26
|
See more details [here](https://gitlab2.polidea.com/CI/fastlane-plugin-polidea/blob/master/docs/Actions.md).
|
|
@@ -40,7 +40,7 @@ lane :deploy do
|
|
|
40
40
|
get_binary_size
|
|
41
41
|
s3
|
|
42
42
|
polidea_store
|
|
43
|
-
|
|
43
|
+
fota_mail(
|
|
44
44
|
to: "piotr.dubiel@polidea.com"
|
|
45
45
|
)
|
|
46
46
|
end
|
|
@@ -121,6 +121,10 @@ module Fastlane
|
|
|
121
121
|
[:ios, :android].include? platform
|
|
122
122
|
end
|
|
123
123
|
|
|
124
|
+
def self.category
|
|
125
|
+
:deprecated
|
|
126
|
+
end
|
|
127
|
+
|
|
124
128
|
def self.validate(platform, params)
|
|
125
129
|
binary_size = params[:binary_size] || Actions.lane_context[Actions::SharedValues::BINARY_SIZE]
|
|
126
130
|
UI.user_error!("No binary size given, pass using `binary_size: bytes` or make sure get_binary_size action succeded and exposed BINARY_SIZE shared value") unless binary_size and !binary_size.nil?
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-polidea
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0.pre
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotrek Dubiel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2019-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: plist
|
|
@@ -198,12 +198,12 @@ files:
|
|
|
198
198
|
- lib/fastlane/plugin/polidea/actions/extract_app_info.rb
|
|
199
199
|
- lib/fastlane/plugin/polidea/actions/extract_app_name.rb
|
|
200
200
|
- lib/fastlane/plugin/polidea/actions/extract_version.rb
|
|
201
|
+
- lib/fastlane/plugin/polidea/actions/fota_mail.rb
|
|
202
|
+
- lib/fastlane/plugin/polidea/actions/fota_s3.rb
|
|
201
203
|
- lib/fastlane/plugin/polidea/actions/get_binary_size.rb
|
|
202
204
|
- lib/fastlane/plugin/polidea/actions/import_provisioning.rb
|
|
203
|
-
- lib/fastlane/plugin/polidea/actions/mailgun.rb
|
|
204
205
|
- lib/fastlane/plugin/polidea/actions/polidea_store.rb
|
|
205
206
|
- lib/fastlane/plugin/polidea/actions/release_notes.rb
|
|
206
|
-
- lib/fastlane/plugin/polidea/actions/s3.rb
|
|
207
207
|
- lib/fastlane/plugin/polidea/actions/shuttle.rb
|
|
208
208
|
- lib/fastlane/plugin/polidea/helper/page_generator.rb
|
|
209
209
|
- lib/fastlane/plugin/polidea/helper/qr_generator.rb
|
|
@@ -317,9 +317,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
317
317
|
version: '0'
|
|
318
318
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
319
319
|
requirements:
|
|
320
|
-
- - "
|
|
320
|
+
- - ">"
|
|
321
321
|
- !ruby/object:Gem::Version
|
|
322
|
-
version:
|
|
322
|
+
version: 1.3.1
|
|
323
323
|
requirements: []
|
|
324
324
|
rubyforge_project:
|
|
325
325
|
rubygems_version: 2.6.8
|