fastlane-plugin-submit_to_beta_app_review 0.1.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 335d03980a9b868caa097a3796c7bcb6c4da08e6
4
+ data.tar.gz: a11c69c308bd65f00bdbaea1338676cb8c0731e1
5
+ SHA512:
6
+ metadata.gz: d1c831b43ad216c878ae2354afc5fb73dbb2c7968347cb0ebcba451f1d34a973ac7a71c12f129a487f85aabdad94bb94cf4ff1322f0dff8643ffc7296807afd0
7
+ data.tar.gz: af5c60823bc20f38fc3beb58dafbaebf09798737ad5faf02cf95ecb99e7c1d8a6aafab744dc8e4bb382ee2c2a31a0d1824560bbc4cdc1387bcb15062087b3b47
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 Dan Loewenherz <dan@lionheartsw.com>
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,68 @@
1
+ # submit_to_beta_app_review plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-submit_to_beta_app_review)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-submit_to_beta_app_review`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin submit_to_beta_app_review
11
+ ```
12
+
13
+ ## About submit_to_beta_app_review
14
+
15
+ This is a plugin that adds a single action that submits a processed iTunes Connect build to Beta App Review. I wrote this since the existing fastlane `deliver` action requires a build be uploaded to submit a build to Beta App Review.
16
+
17
+ ## Example
18
+
19
+ ```ruby
20
+ beta_app_review_information = {
21
+ changelog: '...',
22
+ review_first_name: '...',
23
+ review_last_name: '...',
24
+ review_email: '...', # Your contact email
25
+ review_phone_number: '...', # Your phone number
26
+ review_notes: '...', # Any notes you'd like to provide
27
+ review_demo_user: '...', # The user name Beta App Review can use to sign in to your app
28
+ review_demo_password: '...', # The password Beta App Review can use to sign in to your app
29
+ }
30
+
31
+ submit_to_beta_app_review(
32
+ bundle_identifier: "com.yourcompanyname.app",
33
+ itc_team_id: "123456", # Optional
34
+ build_number: "100",
35
+ beta_app_review_information: beta_app_review_information
36
+ )
37
+ ```
38
+
39
+ Check out the [example `Fastfile`](fastlane/Fastfile) to see how to use this plugin. Try it by cloning the repo, running `fastlane install_plugins` and `bundle exec fastlane test`.
40
+
41
+ ## Run tests for this plugin
42
+
43
+ To run both the tests, and code style validation, run
44
+
45
+ ```
46
+ rake
47
+ ```
48
+
49
+ To automatically fix many of the styling issues, use
50
+ ```
51
+ rubocop -a
52
+ ```
53
+
54
+ ## Issues and Feedback
55
+
56
+ For any other issues and feedback about this plugin, please submit it to this repository.
57
+
58
+ ## Troubleshooting
59
+
60
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
61
+
62
+ ## Using _fastlane_ Plugins
63
+
64
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
65
+
66
+ ## About _fastlane_
67
+
68
+ _fastlane_ is the easiest way to automate beta deployments and releases for your iOS and Android apps. To learn more, check out [fastlane.tools](https://fastlane.tools).
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/submit_to_beta_app_review/version'
2
+
3
+ module Fastlane
4
+ module SubmitToBetaAppReview
5
+ # Return all .rb files inside the "actions" and "helper" directory
6
+ def self.all_classes
7
+ Dir[File.expand_path('**/{actions,helper}/*.rb', File.dirname(__FILE__))]
8
+ end
9
+ end
10
+ end
11
+
12
+ # By default we want to import all available actions and helpers
13
+ # A plugin can contain any number of actions and plugins
14
+ Fastlane::SubmitToBetaAppReview.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,123 @@
1
+ module Fastlane
2
+ module Actions
3
+ class SubmitToBetaAppReviewAction < Action
4
+ def self.run(params)
5
+ UI.message("Login to iTunes Connect (#{params[:username]})")
6
+ Spaceship::Tunes::login(params[:username])
7
+ Spaceship::Tunes.select_team
8
+ UI.message("Login successful")
9
+
10
+ app = Spaceship::Tunes::Application.find(params[:apple_id] || params[:bundle_identifier])
11
+
12
+ version = app.edit_version
13
+ build = version.candidate_builds.find { |b| b.build_version == params[:build_number] }
14
+ UI.message("Submitting to Beta App Review...")
15
+
16
+ begin
17
+ build.submit_for_beta_review!(params[:beta_app_review_information])
18
+ UI.success("Submitted! 🎉")
19
+ rescue
20
+ UI.error("An iTunes Connect error was encountered and the build was not submitted.")
21
+ end
22
+ end
23
+
24
+ #####################################################
25
+ # @!group Documentation
26
+ #####################################################
27
+
28
+ def self.description
29
+ "Submits an already processed build to Beta App Review."
30
+ end
31
+
32
+ def self.details
33
+ "This action submits an already processed build to Beta App Review."
34
+ end
35
+
36
+ def self.available_options
37
+ default_user = CredentialsManager::AppfileConfig.try_fetch_value(:itunes_connect_id)
38
+ default_user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)
39
+
40
+ default_app_identifier = CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)
41
+ default_itc_team_id = CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id)
42
+ default_itc_team_name = CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name)
43
+ [
44
+ FastlaneCore::ConfigItem.new(
45
+ key: :bundle_identifier,
46
+ env_name: "BETAREVIEW_BUNDLE_IDENTIFIER",
47
+ description: "The bundle identifier of your app",
48
+ optional: true,
49
+ conflicting_options: [:apple_id],
50
+ default_value: default_app_identifier
51
+ ),
52
+
53
+ FastlaneCore::ConfigItem.new(
54
+ key: :apple_id,
55
+ env_name: "BETAREVIEW_APPLE_ID",
56
+ description: "Apple ID of the application",
57
+ optional: true,
58
+ conflicting_options: [:bundle_identifier],
59
+ is_string: true,
60
+ ),
61
+
62
+ FastlaneCore::ConfigItem.new(
63
+ key: :username,
64
+ env_name: "BETAREVIEW_USER",
65
+ description: "Your Apple ID Username",
66
+ default_value: default_user
67
+ ),
68
+
69
+ FastlaneCore::ConfigItem.new(
70
+ key: :itc_team_id,
71
+ env_name: "BETAREVIEW_TEAM_ID",
72
+ description: "The ID of your iTunes Connect team if you're in multiple teams",
73
+ optional: true,
74
+ default_value: default_itc_team_id,
75
+ verify_block: proc do |value|
76
+ ENV["FASTLANE_ITC_TEAM_ID"] = value.to_s
77
+ end
78
+ ),
79
+
80
+ FastlaneCore::ConfigItem.new(
81
+ key: :itc_team_name,
82
+ env_name: "BETAREVIEW_TEAM_NAME",
83
+ description: "The name of your iTunes Connect team if you're in multiple teams",
84
+ optional: true,
85
+ default_value: default_itc_team_name,
86
+ verify_block: proc do |value|
87
+ ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
88
+ end
89
+ ),
90
+
91
+ FastlaneCore::ConfigItem.new(
92
+ key: :build_number,
93
+ env_name: "BETAREVIEW_BUILD_NUMBER",
94
+ description: "Build number",
95
+ optional: false,
96
+ is_string: true
97
+ ),
98
+
99
+ FastlaneCore::ConfigItem.new(
100
+ key: :beta_app_review_information,
101
+ description: "Metadata: A hash containing the beta app review information",
102
+ optional: true,
103
+ is_string: false
104
+ ),
105
+ ]
106
+ end
107
+
108
+ def self.output
109
+ end
110
+
111
+ def self.return_value
112
+ end
113
+
114
+ def self.authors
115
+ ["dwlz"]
116
+ end
117
+
118
+ def self.is_supported?(platform)
119
+ platform == :ios
120
+ end
121
+ end
122
+ end
123
+ end
@@ -0,0 +1,12 @@
1
+ module Fastlane
2
+ module Helper
3
+ class SubmitToBetaAppReviewHelper
4
+ # class methods that you define here become available in your action
5
+ # as `Helper::SubmitToBetaAppReviewHelper.your_method`
6
+ #
7
+ def self.show_message
8
+ UI.message("Hello from the submit_to_beta_app_review plugin helper!")
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module SubmitToBetaAppReview
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,147 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-submit_to_beta_app_review
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Dan Loewenherz
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-09-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: pry
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ">="
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rubocop
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ - !ruby/object:Gem::Dependency
98
+ name: fastlane
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: 2.59.0
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: 2.59.0
111
+ description:
112
+ email: dan@lionheartsw.com
113
+ executables: []
114
+ extensions: []
115
+ extra_rdoc_files: []
116
+ files:
117
+ - LICENSE
118
+ - README.md
119
+ - lib/fastlane/plugin/submit_to_beta_app_review.rb
120
+ - lib/fastlane/plugin/submit_to_beta_app_review/actions/submit_to_beta_app_review_action.rb
121
+ - lib/fastlane/plugin/submit_to_beta_app_review/helper/submit_to_beta_app_review_helper.rb
122
+ - lib/fastlane/plugin/submit_to_beta_app_review/version.rb
123
+ homepage: https://github.com/lionheart/fastlane-plugin-submit_to_beta_app_review
124
+ licenses:
125
+ - MIT
126
+ metadata: {}
127
+ post_install_message:
128
+ rdoc_options: []
129
+ require_paths:
130
+ - lib
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: '0'
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: '0'
141
+ requirements: []
142
+ rubyforge_project:
143
+ rubygems_version: 2.6.13
144
+ signing_key:
145
+ specification_version: 4
146
+ summary: Submits an already processed build to Beta App Review.
147
+ test_files: []