fastlane-plugin-gs_deliver 0.1.39 → 0.2
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4112c4f7a991badd9f1e857cd270ac9781988199
|
|
4
|
+
data.tar.gz: b81f4952ecbd1632274de4642f839e21533ed76e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f9bbe938e8ea59520bac6321656c651c281ed9d1c460b14c216f5b80fc1c1cc220939513233d86ff9ddd4b3bce9af1ccd49161b5538f0e6ec273caee7532c9b
|
|
7
|
+
data.tar.gz: a7bb717c1b43e8976ea139f6f0e8e6cd03c42b231cbe88c2298486dd19b3f01af9319b5ffa7690c6e42c98834712fe4cbf99699cf21bd5e7f58bad953e5ec1ce
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
module Fastlane
|
|
2
|
+
module Actions
|
|
3
|
+
require 'Spaceship'
|
|
4
|
+
class GsRejectLatestVersionAction < Action
|
|
5
|
+
def self.run(params)
|
|
6
|
+
Spaceship::Tunes.login()
|
|
7
|
+
app = Spaceship::Tunes::Application.find(params[:app_identifier])
|
|
8
|
+
return app.latest_version().reject!
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
def self.description
|
|
12
|
+
"Gradoservice plugin to rule apps releases"
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
def self.authors
|
|
16
|
+
["Сергей Веселовский"]
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
def self.return_value
|
|
20
|
+
# If your method provides a return value, you can describe here what it does
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
def self.details
|
|
24
|
+
# Optional:
|
|
25
|
+
"Gradoservice plugin to rule apps releases for our scheme"
|
|
26
|
+
end
|
|
27
|
+
|
|
28
|
+
def self.available_options
|
|
29
|
+
[
|
|
30
|
+
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
|
31
|
+
env_name: "BUNDLE_ID",
|
|
32
|
+
description: "A description of your option",
|
|
33
|
+
optional: false,
|
|
34
|
+
type: String)
|
|
35
|
+
]
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
def self.is_supported?(platform)
|
|
39
|
+
# Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
|
|
40
|
+
# See: https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Platforms.md
|
|
41
|
+
#
|
|
42
|
+
# [:ios, :mac, :android].include?(platform)
|
|
43
|
+
true
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
end
|
|
47
|
+
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fastlane-plugin-gs_deliver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: '0.2'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Сергей Веселовский
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: pry
|
|
@@ -107,6 +107,7 @@ files:
|
|
|
107
107
|
- lib/fastlane/plugin/gs_deliver/actions/gs_get_app_status.rb
|
|
108
108
|
- lib/fastlane/plugin/gs_deliver/actions/gs_move_rc_to_beta_review.rb
|
|
109
109
|
- lib/fastlane/plugin/gs_deliver/actions/gs_move_to_ready_for_sale.rb
|
|
110
|
+
- lib/fastlane/plugin/gs_deliver/actions/gs_reject_latest_version.rb
|
|
110
111
|
- lib/fastlane/plugin/gs_deliver/helper/gs_deliver_helper.rb
|
|
111
112
|
- lib/fastlane/plugin/gs_deliver/version.rb
|
|
112
113
|
homepage: https://github.com/SAVeselovskiy/gs_deliver
|