fastlane-plugin-polidea 0.6.4 → 1.0.0.pre

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ffdc81791469287fd4a7bc81cc21970d4ed2051b
4
- data.tar.gz: cf2fceccb5f85159c1cdd2c717ed8f5cc0061379
3
+ metadata.gz: 24cb6b4990f9df96baf13a4d87042c29c0d58511
4
+ data.tar.gz: d821ae3f09c6f3a26aff561f0b1f96676fc5e6bb
5
5
  SHA512:
6
- metadata.gz: 7b41c73781e3583aaee9827f84c6b1d40ea3b952512f87bdb5e37f8e8a69a2e770450ceacfa04b53792e45ebc2b8ab2aad7290ee123cb07dfaedf54f85c214cd
7
- data.tar.gz: 3f9684c12e1c1c5db099b08b4dcdbd9f0ae9807ece05e7b2b98ca42d9f7b0f9df62a96cff2bd88fd7d928960944195df4f98a960288ad264efb10a97d127ca84
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
- - `mailgun`: Custom version of mailgun action with Polidea's mail template
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
- mailgun(
43
+ fota_mail(
44
44
  to: "piotr.dubiel@polidea.com"
45
45
  )
46
46
  end
@@ -3,7 +3,7 @@ require 'fastlane/erb_template_helper'
3
3
 
4
4
  module Fastlane
5
5
  module Actions
6
- class MailgunAction < Action
6
+ class FotaMailAction < Action
7
7
  def self.is_supported?(platform)
8
8
  true
9
9
  end
@@ -28,7 +28,7 @@ module Fastlane
28
28
  path: '-P'
29
29
  }
30
30
 
31
- class S3Action < Action
31
+ class FotaS3Action < Action
32
32
  def self.run(config)
33
33
  platform = Actions.lane_context[Actions::SharedValues::PLATFORM_NAME].to_sym
34
34
 
@@ -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?
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Polidea
3
- VERSION = "0.6.4"
3
+ VERSION = "1.0.0.pre"
4
4
  end
5
5
  end
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.6.4
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: 2018-05-15 00:00:00.000000000 Z
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: '0'
322
+ version: 1.3.1
323
323
  requirements: []
324
324
  rubyforge_project:
325
325
  rubygems_version: 2.6.8