fastlane-plugin-appstore_reviews 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9cbf24842f863d44fea86c9959cd710498736439eafdc5f6a72ae51ef246efb1
4
+ data.tar.gz: 1e856cefbc69c99f3ae3d432ce00463e26b3a2d9ee52e2461a56d0106282bba8
5
+ SHA512:
6
+ metadata.gz: df8615504b535e182e680f42a12cf06dcd9b53dd2cc61c30ebac2eb8a9acd23e80ed37a4e8b2d6213e3380b136a2c6dc022f76479c11197c99cb0deaf5ac6f2f
7
+ data.tar.gz: 12c39a50cc491a29675252e0a305ef38aee9dfa4f509f9053b07cfa9c2aff539e72b04ad39f8aad43f0eddbd908539a0e6cb9f52ba57b548e50cc64ba49a3145
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2023 Mirsad Arslanovic <mirsad.arslanovic@gmail.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,66 @@
1
+ # appstore_reviews plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-appstore_reviews)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-appstore_reviews`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin appstore_reviews
11
+ ```
12
+
13
+ ## About appstore_reviews
14
+
15
+ The appstore_reviews plugin allows you to conveniently retrieve customer reviews for your iOS app from the App Store. This plugin utilizes the App Center API key and app ID to fetch reviews, providing an easy and automated way to monitor and respond to user feedback.
16
+
17
+ ## Usage
18
+
19
+ To use the appstore_reviews plugin, add one of the following code snippets to your Fastfile, depending on your preferred configuration method:
20
+
21
+ ### Example 1: Using base64 key content
22
+
23
+ ```bash
24
+ reviews = appstore_reviews(
25
+ key_id: ENV["ASCAPI_KEY_ID"],
26
+ issuer_id: ENV["ASCAPI_ISSUER_ID"],
27
+ key_content: ENV["ASCAPI_KEY_CONTENT"],
28
+ is_key_content_base64: true,
29
+ duration: 1200,
30
+ app_id: ENV["APP_ID"],
31
+ time_frame: "All"
32
+ )
33
+ ```
34
+
35
+ Also, 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`.
36
+
37
+ **Note to author:** Please set up a sample project to make it easy for users to explore what your plugin does. Provide everything that is necessary to try out the plugin in this project (including a sample Xcode/Android project if necessary)
38
+
39
+ ## Run tests for this plugin
40
+
41
+ To run both the tests, and code style validation, run
42
+
43
+ ```
44
+ rake
45
+ ```
46
+
47
+ To automatically fix many of the styling issues, use
48
+ ```
49
+ rubocop -a
50
+ ```
51
+
52
+ ## Issues and Feedback
53
+
54
+ For any other issues and feedback about this plugin, please submit it to this repository.
55
+
56
+ ## Troubleshooting
57
+
58
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
59
+
60
+ ## Using _fastlane_ Plugins
61
+
62
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
63
+
64
+ ## About _fastlane_
65
+
66
+ _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,129 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/appstore_reviews_helper'
3
+ require 'spaceship'
4
+
5
+ module Fastlane
6
+ module Actions
7
+ class AppstoreReviewsAction < Action
8
+ def self.run(params)
9
+ key_id = params[:key_id]
10
+ issuer_id = params[:issuer_id]
11
+ key_content = params[:key_content]
12
+ is_key_content_base64 = params[:is_key_content_base64]
13
+ key_filepath = params[:key_filepath]
14
+ duration = params[:duration]
15
+ key = params[:key]
16
+ app_id = params[:app_id]
17
+ time_frame = params[:time_frame]
18
+
19
+ if key_content.nil? && key.nil? && key_filepath.nil? && key.nil?
20
+ UI.user_error!(":key_content or :key_filepath or :key is required")
21
+ end
22
+
23
+ if key
24
+ token = Helper::AppstoreReviewsHelper.generateToken(key: key)
25
+ elsif key_content
26
+ key = other_action.app_store_connect_api_key(key_id: key_id,
27
+ issuer_id: issuer_id,
28
+ key_content: key_content,
29
+ is_key_content_base64: is_key_content_base64,
30
+ duration: duration,
31
+ in_house: false)
32
+ token = Helper::AppstoreReviewsHelper.generateToken(key: key)
33
+ elsif key_filepath
34
+ key = other_action.app_store_connect_api_key(key_id: key_id,
35
+ issuer_id: issuer_id,
36
+ key_filepath: key_filepath,
37
+ duration: duration,
38
+ in_house: false)
39
+ token = Helper::AppstoreReviewsHelper.generateToken(key: key)
40
+ else
41
+ UI.user_error!(":key_content or :key_filepath or :key is required")
42
+ end
43
+
44
+ return Helper::AppstoreReviewsHelper.getReviews(token: token, app_id: app_id, time_frame: time_frame)
45
+ end
46
+
47
+ def self.description
48
+ "Plugin to retrieve customer reviews for the app"
49
+ end
50
+
51
+ def self.authors
52
+ ["Mirsad Arslanovic"]
53
+ end
54
+
55
+ def self.return_value
56
+ "Array of review objects"
57
+ end
58
+
59
+ def self.details
60
+ # Optional:
61
+ "Plugin to retrieve customer reviews for the app"
62
+ end
63
+
64
+ def self.available_options
65
+ [
66
+ FastlaneCore::ConfigItem.new(key: :key,
67
+ type: Hash,
68
+ optional: true,
69
+ conflicting_options: [:key_id, :issuer_id, :key_filepath, :key_content, :is_key_content_base64, :duration],
70
+ description: "Spaceship::ConnectAPI.Token type"),
71
+ FastlaneCore::ConfigItem.new(key: :key_id,
72
+ type: String,
73
+ optional: true,
74
+ conflicting_options: [:key],
75
+ description: "The key ID"),
76
+ FastlaneCore::ConfigItem.new(key: :issuer_id,
77
+ type: String,
78
+ optional: true,
79
+ conflicting_options: [:key],
80
+ description: "The issuer ID "),
81
+ FastlaneCore::ConfigItem.new(key: :key_filepath,
82
+ type: String,
83
+ optional: true,
84
+ conflicting_options: [:key, :key_content],
85
+ description: "The path to the key p8 file"),
86
+ FastlaneCore::ConfigItem.new(key: :key_content,
87
+ type: String,
88
+ optional: true,
89
+ conflicting_options: [:key, :key_filepath],
90
+ description: "The content of the key p8 file"),
91
+ FastlaneCore::ConfigItem.new(key: :is_key_content_base64,
92
+ type: Boolean,
93
+ optional: true,
94
+ conflicting_options: [:key],
95
+ description: "Whether :key_content is Base64 encoded or not false"),
96
+ FastlaneCore::ConfigItem.new(key: :duration,
97
+ optional: true,
98
+ type: Integer,
99
+ default_value: Spaceship::ConnectAPI::Token::DEFAULT_TOKEN_DURATION,
100
+ conflicting_options: [:key],
101
+ description: "The token session duration"),
102
+ FastlaneCore::ConfigItem.new(key: :app_id,
103
+ type: String,
104
+ optional: false,
105
+ description: "ID that uniquely identifies the app on appstore"),
106
+ FastlaneCore::ConfigItem.new(key: :time_frame,
107
+ description: "Time frame for the action (Today, Week, Month, Year)",
108
+ optional: false,
109
+ type: String,
110
+ default_value: 'Today',
111
+ verify_block: proc do |value|
112
+ valid_values = ['Today', 'Week', 'Month', 'Year', 'All']
113
+ unless valid_values.include?(value)
114
+ UI.user_error!("Invalid value for time_frame: #{value}. Valid values are #{valid_values.join(', ')}")
115
+ end
116
+ end)
117
+ ]
118
+ end
119
+
120
+ def self.is_supported?(platform)
121
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
122
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
123
+ #
124
+ # [:ios, :mac, :android].include?(platform)
125
+ true
126
+ end
127
+ end
128
+ end
129
+ end
@@ -0,0 +1,90 @@
1
+ require 'fastlane_core/ui/ui'
2
+ require 'spaceship'
3
+ require 'net/http'
4
+ require 'uri'
5
+ require 'json'
6
+ require_relative "../models/response.rb"
7
+
8
+ module Fastlane
9
+ UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
10
+
11
+ module Helper
12
+ class AppstoreReviewsHelper
13
+ def self.show_message
14
+ UI.message("Hello from the appstore_reviews plugin helper!")
15
+ end
16
+
17
+ def self.generateToken(params)
18
+ key = params[:key]
19
+ return Spaceship::ConnectAPI::Token.create(**key)
20
+ end
21
+
22
+ def self.getReviews(params, url=nil, reviews = [])
23
+ token = params[:token]
24
+ app_id = params[:app_id]
25
+ time_frame = params[:time_frame]
26
+
27
+ reviews_url = url
28
+ if url.nil?
29
+ reviews_url = "https://api.appstoreconnect.apple.com/v1/apps/#{app_id}/customerReviews?sort=-createdDate&limit=200"
30
+ end
31
+ puts "I am here"
32
+ response = self.makeAPIrequest(reviews_url, token)
33
+ parsed_json = JSON.parse(response)
34
+ parsed_response = AppstoreReviews::Response.new(parsed_json)
35
+
36
+ last_review = parsed_response.data.last
37
+ last_review_on_page_date = last_review.attributes.created_date
38
+ reviews.concat(parsed_response.data)
39
+
40
+ if self.should_call_more_pages(time_frame, last_review_on_page_date) && !parsed_response.links.next_link.nil?
41
+ self.getReviews(params, parsed_response.links.next_link, reviews)
42
+ end
43
+
44
+ return reviews
45
+ end
46
+
47
+ def self.should_call_more_pages(time_frame, last_review_date)
48
+ case time_frame
49
+ when 'Today'
50
+ return last_review_date == Date.today
51
+ when 'Week'
52
+ return last_review_date >= Date.today - 7 && last_review_date <= Date.today
53
+ when 'Month'
54
+ return last_review_date >= Date.today - 30 && last_review_date <= Date.today
55
+ when 'Year'
56
+ return last_review_date >= Date.today - 365 && last_review_date <= Date.today
57
+ else
58
+ return true
59
+ end
60
+ end
61
+
62
+ def self.makeAPIrequest(url, token)
63
+ uri = URI(url)
64
+ request = Net::HTTP::Get.new(uri)
65
+
66
+ if token.expired?
67
+ UI.message("App Store Connect API token expired at #{token.expiration}... refreshing")
68
+ token.refresh!
69
+ end
70
+
71
+ request['Authorization'] = "Bearer #{token.text}"
72
+
73
+ response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: uri.scheme == 'https') do |http|
74
+ http.request(request)
75
+ end
76
+
77
+ case response
78
+ when Net::HTTPSuccess then
79
+ return response.body
80
+ else
81
+ UI.user_error!("AppstoreConnect API Request finished with error code: #{response.code}")
82
+ end
83
+ end
84
+
85
+ def self.getTimeFrame
86
+ return ['Today', 'Week', 'Month', 'Year']
87
+ end
88
+ end
89
+ end
90
+ end
@@ -0,0 +1,21 @@
1
+ require_relative "customer_review.rb"
2
+ require_relative "review_attributes.rb"
3
+ require_relative "review_relationships.rb"
4
+ require_relative "links.rb"
5
+ require_relative "meta.rb"
6
+
7
+ module Fastlane
8
+ module AppstoreReviews
9
+ class CustomerReview
10
+ attr_accessor :type, :id, :attributes, :relationships, :links
11
+
12
+ def initialize(json)
13
+ @type = json['type']
14
+ @id = json['id']
15
+ @attributes = ReviewAttributes.new(json['attributes'])
16
+ @relationships = ReviewRelationships.new(json['relationships'])
17
+ @links = Links.new(json['links'])
18
+ end
19
+ end
20
+ end
21
+ end
@@ -0,0 +1,13 @@
1
+ module Fastlane
2
+ module AppstoreReviews
3
+ class Links
4
+ attr_accessor :self_link, :related, :next_link
5
+
6
+ def initialize(json)
7
+ @self_link = json['self']
8
+ @related = json['related'] || nil
9
+ @next_link = json['next'] || nil
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,13 @@
1
+ require_relative "paging.rb"
2
+
3
+ module Fastlane
4
+ module AppstoreReviews
5
+ class Meta
6
+ attr_accessor :paging
7
+
8
+ def initialize(json)
9
+ @paging = Paging.new(json['paging'])
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,12 @@
1
+ module Fastlane
2
+ module AppstoreReviews
3
+ class Paging
4
+ attr_accessor :total, :limit
5
+
6
+ def initialize(json)
7
+ @total = json['total']
8
+ @limit = json['limit']
9
+ end
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,17 @@
1
+ require_relative "customer_review.rb"
2
+ require_relative "links.rb"
3
+ require_relative "meta.rb"
4
+
5
+ module Fastlane
6
+ module AppstoreReviews
7
+ class Response
8
+ attr_accessor :data, :links, :meta
9
+
10
+ def initialize(json)
11
+ @data = json['data'].map { |item| CustomerReview.new(item) }
12
+ @links = Links.new(json['links'])
13
+ @meta = Meta.new(json['meta'])
14
+ end
15
+ end
16
+ end
17
+ end
@@ -0,0 +1,18 @@
1
+ require 'date'
2
+
3
+ module Fastlane
4
+ module AppstoreReviews
5
+ class ReviewAttributes
6
+ attr_accessor :rating, :title, :body, :reviewer_nickname, :created_date, :territory
7
+
8
+ def initialize(json)
9
+ @rating = json['rating']
10
+ @title = json['title']
11
+ @body = json['body']
12
+ @reviewer_nickname = json['reviewerNickname']
13
+ @created_date = DateTime.parse(json['createdDate'])
14
+ @territory = json['territory']
15
+ end
16
+ end
17
+ end
18
+ end
@@ -0,0 +1,13 @@
1
+ require_relative "links.rb"
2
+ module Fastlane
3
+ module AppstoreReviews
4
+ class ReviewRelationships
5
+ attr_accessor :links
6
+
7
+ def initialize(json)
8
+ response = json['response']
9
+ @links = Links.new(response)
10
+ end
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module AppstoreReviews
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/appstore_reviews/version'
2
+
3
+ module Fastlane
4
+ module AppstoreReviews
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::AppstoreReviews.all_classes.each do |current|
15
+ require current
16
+ end
metadata ADDED
@@ -0,0 +1,196 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-appstore_reviews
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Mirsad Arslanovic
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2023-12-23 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
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: fastlane
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: 2.216.0
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: 2.216.0
41
+ - !ruby/object:Gem::Dependency
42
+ name: pry
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: rspec
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: rspec_junit_formatter
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: rubocop
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - '='
102
+ - !ruby/object:Gem::Version
103
+ version: 1.50.2
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - '='
109
+ - !ruby/object:Gem::Version
110
+ version: 1.50.2
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop-performance
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - ">="
116
+ - !ruby/object:Gem::Version
117
+ version: '0'
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - ">="
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ - !ruby/object:Gem::Dependency
126
+ name: rubocop-require_tools
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: '0'
139
+ - !ruby/object:Gem::Dependency
140
+ name: simplecov
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - ">="
144
+ - !ruby/object:Gem::Version
145
+ version: '0'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - ">="
151
+ - !ruby/object:Gem::Version
152
+ version: '0'
153
+ description:
154
+ email: mirsad.arslanovic@gmail.com
155
+ executables: []
156
+ extensions: []
157
+ extra_rdoc_files: []
158
+ files:
159
+ - LICENSE
160
+ - README.md
161
+ - lib/fastlane/plugin/appstore_reviews.rb
162
+ - lib/fastlane/plugin/appstore_reviews/actions/appstore_reviews_action.rb
163
+ - lib/fastlane/plugin/appstore_reviews/helper/appstore_reviews_helper.rb
164
+ - lib/fastlane/plugin/appstore_reviews/models/customer_review.rb
165
+ - lib/fastlane/plugin/appstore_reviews/models/links.rb
166
+ - lib/fastlane/plugin/appstore_reviews/models/meta.rb
167
+ - lib/fastlane/plugin/appstore_reviews/models/paging.rb
168
+ - lib/fastlane/plugin/appstore_reviews/models/response.rb
169
+ - lib/fastlane/plugin/appstore_reviews/models/review_attributes.rb
170
+ - lib/fastlane/plugin/appstore_reviews/models/review_relationships.rb
171
+ - lib/fastlane/plugin/appstore_reviews/version.rb
172
+ homepage: https://github.com/micho233/fastlane-plugin-appstore_reviews
173
+ licenses:
174
+ - MIT
175
+ metadata:
176
+ rubygems_mfa_required: 'true'
177
+ post_install_message:
178
+ rdoc_options: []
179
+ require_paths:
180
+ - lib
181
+ required_ruby_version: !ruby/object:Gem::Requirement
182
+ requirements:
183
+ - - ">="
184
+ - !ruby/object:Gem::Version
185
+ version: '2.6'
186
+ required_rubygems_version: !ruby/object:Gem::Requirement
187
+ requirements:
188
+ - - ">="
189
+ - !ruby/object:Gem::Version
190
+ version: '0'
191
+ requirements: []
192
+ rubygems_version: 3.0.3.1
193
+ signing_key:
194
+ specification_version: 4
195
+ summary: Plugin to retrieve customer reviews for the app
196
+ test_files: []