fastlane-plugin-bowl 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 0cd81e4b187b09ce03eaa8aad21f7ffaa69babec6f50bbd30dcfced0686f6bc8
4
+ data.tar.gz: d1d84d95f42be49bcbc2c03d7785f9e53a4c056a8303e958c9d181302b63db44
5
+ SHA512:
6
+ metadata.gz: 8ad330b44ae944d58bb524e058482ed89180619e382a08cc032fd8f821d19f0aed15eb811e09085bb4f57c5e2c1297df22279793bcf968513a8d5c8e6bd2b8a6
7
+ data.tar.gz: '0408940f5d0dd860be9d51510f20318ddf0f4835e617cda3e11bf10c9041d0b716cfdbebf41a5040f1a19d05a70336defab81765cfe0941f533c86c7a8974704'
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2019 Benjamin Wulff <benjamin.wulff@me.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.
@@ -0,0 +1,52 @@
1
+ # bowl plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-bowl)
4
+
5
+ ## Getting Started
6
+
7
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-bowl`, add it to your project by running:
8
+
9
+ ```bash
10
+ fastlane add_plugin bowl
11
+ ```
12
+
13
+ ## About bowl
14
+
15
+ Handles uploads to BOWL backend
16
+
17
+ **Note to author:** Add a more detailed description about this plugin here. If your plugin contains multiple actions, make sure to mention them here.
18
+
19
+ ## Example
20
+
21
+ 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`.
22
+
23
+ **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)
24
+
25
+ ## Run tests for this plugin
26
+
27
+ To run both the tests, and code style validation, run
28
+
29
+ ```
30
+ rake
31
+ ```
32
+
33
+ To automatically fix many of the styling issues, use
34
+ ```
35
+ rubocop -a
36
+ ```
37
+
38
+ ## Issues and Feedback
39
+
40
+ For any other issues and feedback about this plugin, please submit it to this repository.
41
+
42
+ ## Troubleshooting
43
+
44
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
45
+
46
+ ## Using _fastlane_ Plugins
47
+
48
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
49
+
50
+ ## About _fastlane_
51
+
52
+ _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/bowl/version'
2
+
3
+ module Fastlane
4
+ module Bowl
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::Bowl.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,215 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/bowl_helper'
3
+
4
+ LEVEL = 'l'
5
+ BLACK = "\e[40m"
6
+ WHITE = "\e[107m"
7
+ DEFAULT = "\e[49m"
8
+ SPACER = " "
9
+
10
+ module Fastlane
11
+ module Actions
12
+ module SharedValues
13
+ BOWL_DOWNLOAD_URL = :BOWL_DOWNLOAD_URL
14
+ BOWL_VERSION_LINK = :BOWL_VERSION_LINK
15
+ end
16
+
17
+ class BowlAction < Action
18
+ def self.print_qr_code(url)
19
+ require 'rqrcode'
20
+ qrcode = RQRCode::QRCode.new(url)
21
+
22
+ width = qrcode.modules.length
23
+
24
+ puts WHITE + SPACER * (width + 2) + BLACK
25
+
26
+ width.times do |x|
27
+ print WHITE + SPACER
28
+ width.times do |y|
29
+ print (qrcode.is_dark(x,y) ? BLACK : WHITE ) + SPACER
30
+ end
31
+ puts WHITE + SPACER + DEFAULT
32
+ end
33
+
34
+ puts WHITE + SPACER * (width + 2) + BLACK
35
+ end
36
+
37
+ def self.connection(options)
38
+ require 'faraday'
39
+
40
+ foptions = {
41
+ url: options[:base_url]
42
+ }
43
+ Faraday.new(foptions) do |builder|
44
+ builder.request(:multipart)
45
+ builder.request(:url_encoded)
46
+ builder.response(:json, content_type: /\bjson$/)
47
+ builder.adapter(:net_http)
48
+ end
49
+ end
50
+
51
+ def self.upload_version(m2m_api_token, build_file, options)
52
+ connection = self.connection(options)
53
+
54
+ options[:build_file] = Faraday::UploadIO.new(build_file, 'application/octet-stream') if build_file && File.exist?(build_file)
55
+
56
+ connection.post do |req|
57
+ req.headers['Accept'] = 'application/json'
58
+ if options[:ipa].nil?
59
+ req.url("/api/apps/android/versions")
60
+ else
61
+ req.url("/api/apps/ios/versions")
62
+ end
63
+ req.headers['X-M2M-Auth-Token'] = m2m_api_token
64
+ req.body = options
65
+ end
66
+ end
67
+
68
+ def self.run(params)
69
+ build_file = [
70
+ params[:ipa],
71
+ params[:apk]
72
+ ].detect { |e| !e.to_s.empty? }
73
+
74
+ if build_file.nil?
75
+ UI.user_error!("You have to provide a build file (params 'apk' or 'ipa')")
76
+ end
77
+
78
+ UI.success('Starting with file(s) upload to BOWL... this could take some time.')
79
+
80
+ values = params.values
81
+ m2m_api_token = values.delete(:m2m_api_token)
82
+
83
+ values.delete_if { |k, v| v.nil? }
84
+
85
+ response = self.upload_version(m2m_api_token, build_file, values)
86
+ case response.status
87
+ when 200...300
88
+ install_url = response.body['installUrl']
89
+ link = response.body['link']
90
+
91
+ Actions.lane_context[SharedValues::BOWL_DOWNLOAD_URL] = install_url
92
+ Actions.lane_context[SharedValues::BOWL_VERSION_LINK] = link
93
+
94
+ UI.success('Build successfully uploaded to BOWL!')
95
+ UI.success('Scan the QR below to test the version')
96
+ self.print_qr_code(install_url)
97
+ UI.message("Installation Link: #{install_url}") if install_url
98
+
99
+ UI.success('Once you\'re happy, approve the new version to make it publicly available')
100
+ UI.message("Link to version: #{link}") if link
101
+
102
+ else
103
+ if response.body.to_s.include?("App could not be created")
104
+ UI.user_error!("BOWL has an issue processing this app.")
105
+ else
106
+ UI.user_error!("Error when trying to upload file(s) to BOWL: #{response.status} - #{response.body}")
107
+ end
108
+ end
109
+ end
110
+
111
+ def self.description
112
+ "Handles uploads to BOWL backend"
113
+ end
114
+
115
+ def self.authors
116
+ ["Benjamin Wulff"]
117
+ end
118
+
119
+ def self.return_value
120
+ # If your method provides a return value, you can describe here what it does
121
+ end
122
+
123
+ def self.details
124
+ # Optional:
125
+ "Soon"
126
+ end
127
+
128
+ def self.available_options
129
+ # Define all options your action supports.
130
+
131
+ # Below a few examples
132
+ [
133
+ FastlaneCore::ConfigItem.new(key: :m2m_api_token,
134
+ env_name: "BOWL_M2M_API_TOKEN", # The name of the environment variable
135
+ description: "M2M API Token for UploadToBowlAction", # a short description of this parameter
136
+ verify_block: proc do |value|
137
+ UI.user_error!("No M2M API token for UploadToBowlAction given, pass using `m2m_api_token: 'token'`") unless (value and not value.empty?)
138
+ # UI.user_error!("Couldn't find file at path '#{value}'") unless File.exist?(value)
139
+ end),
140
+ FastlaneCore::ConfigItem.new(key: :base_url,
141
+ env_name: "BOWL_BASE_URL", # The name of the environment variable
142
+ description: "Base Url for UploadToBowlAction", # a short description of this parameter
143
+ verify_block: proc do |value|
144
+ UI.user_error!("No Base Url for UploadToBowlAction given, pass using `base_url: 'url'`") unless (value and not value.empty?)
145
+ end),
146
+ FastlaneCore::ConfigItem.new(key: :apk,
147
+ env_name: "BOWL_APK", # The name of the environment variable
148
+ description: "Path to your APK file",
149
+ default_value: Actions.lane_context[SharedValues::GRADLE_APK_OUTPUT_PATH],
150
+ default_value_dynamic: true,
151
+ optional: true,
152
+ verify_block: proc do |value|
153
+ UI.user_error!("Couldn't find apk file at path '#{value}'") unless File.exist?(value)
154
+ end,
155
+ conflicting_options: [:ipa],
156
+ conflict_block: proc do |value|
157
+ UI.user_error!("You can't use 'apk' and '#{value.key}' options in one run")
158
+ end),
159
+ FastlaneCore::ConfigItem.new(key: :ipa,
160
+ env_name: "BOWL_IPA",
161
+ description: "Path to your IPA file",
162
+ default_value: Actions.lane_context[SharedValues::IPA_OUTPUT_PATH],
163
+ default_value_dynamic: true,
164
+ optional: true,
165
+ verify_block: proc do |value|
166
+ UI.user_error!("Couldn't find ipa file at path '#{value}'") unless File.exist?(value)
167
+ end,
168
+ conflicting_options: [:apk],
169
+ conflict_block: proc do |value|
170
+ UI.user_error!("You can't use 'ipa' and '#{value.key}' options in one run")
171
+ end),
172
+ FastlaneCore::ConfigItem.new(key: :version,
173
+ env_name: "BOWL_APP_VERSION",
174
+ description: "Version of your IPA or APK file",
175
+ is_string: true, # true: verifies the input is a string, false: every kind of value
176
+ verify_block: proc do |value|
177
+ UI.user_error!("No version key given, pass using `version: 'version'`") unless (value and not value.empty?)
178
+ end),
179
+ FastlaneCore::ConfigItem.new(key: :mandatory,
180
+ env_name: "BOWL_APP_VERSION_MANDATORY",
181
+ description: "Wether this version represents a mandatory update",
182
+ is_string: false,
183
+ optional: true,
184
+ default_value: false) # the default value if the user didn't provide one
185
+ ]
186
+ end
187
+
188
+ def self.output
189
+ # Define the shared values you are going to provide
190
+ # Example
191
+ [
192
+ ['BOWL_DOWNLOAD_URL', 'Url of the uploaded build'],
193
+ ['BOWL_VERSION_LINK', 'Link to the uploaded version in BOWL backend']
194
+ ]
195
+ end
196
+
197
+ def self.return_value
198
+ # If your method provides a return value, you can describe here what it does
199
+ end
200
+
201
+ def self.authors
202
+ # So no one will ever forget your contribution to fastlane :) You are awesome btw!
203
+ ["Benjamin Wulff"]
204
+ end
205
+
206
+ def self.is_supported?(platform)
207
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
208
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
209
+ #
210
+ # [:ios, :mac, :android].include?(platform)
211
+ true
212
+ end
213
+ end
214
+ end
215
+ end
@@ -0,0 +1,57 @@
1
+ require 'tempfile'
2
+ require 'fileutils'
3
+ require 'fastlane/action'
4
+ require_relative '../helper/bowl_helper'
5
+
6
+ module Fastlane
7
+ module Actions
8
+ class GetGradlePropertyAction < Action
9
+ def self.run(params)
10
+ app_project_dir ||= params[:app_project_dir]
11
+ regex = Regexp.new(/(?<key>#{params[:key]}\s+)(?<eql>=\s+)?(?<left>[\'\"]?)(?<value>[a-zA-Z0-9\.\_]*)(?<right>[\'\"]?)(?<comment>.*)/)
12
+ value = ""
13
+ found = false
14
+ Dir.glob("#{app_project_dir}/build.gradle") do |path|
15
+ begin
16
+ File.open(path, 'r') do |file|
17
+ file.each_line do |line|
18
+ unless line.match(regex) and !found
19
+ next
20
+ end
21
+ key, eql, left, value, right, comment = line.match(regex).captures
22
+ break
23
+ end
24
+ file.close
25
+ end
26
+ end
27
+ end
28
+ return value
29
+ end
30
+
31
+ #####################################################
32
+ # @!group Documentation
33
+ #####################################################
34
+ def self.available_options
35
+ [
36
+ FastlaneCore::ConfigItem.new(key: :app_project_dir,
37
+ env_name: "BOWL_APP_PROJECT_DIR",
38
+ description: "The path to the application source folder in the Android project (default: android/app)",
39
+ optional: true,
40
+ type: String,
41
+ default_value: "android/app"),
42
+ FastlaneCore::ConfigItem.new(key: :key,
43
+ description: "The property key",
44
+ type: String)
45
+ ]
46
+ end
47
+
48
+ def self.authors
49
+ ["Benjamin Wulff"]
50
+ end
51
+
52
+ def self.is_supported?(platform)
53
+ platform == :android
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,75 @@
1
+ require 'tempfile'
2
+ require 'fileutils'
3
+ require 'fastlane/action'
4
+ require_relative '../helper/bowl_helper'
5
+
6
+ module Fastlane
7
+ module Actions
8
+ class SetGradlePropertyAction < Action
9
+ def self.run(params)
10
+ app_project_dir ||= params[:app_project_dir]
11
+ regex = Regexp.new(/(?<key>#{params[:key]}\s+)(?<eql>=\s+)?(?<left>[\'\"]?)(?<value>[a-zA-Z0-9\.\_]*)(?<right>[\'\"]?)(?<comment>.*)/)
12
+ found = false
13
+ Dir.glob("#{app_project_dir}/build.gradle") do |path|
14
+ begin
15
+ temp_file = Tempfile.new('versioning')
16
+ File.open(path, 'r') do |file|
17
+ file.each_line do |line|
18
+ unless line.match(regex) and !found
19
+ temp_file.puts line
20
+ next
21
+ end
22
+ line = line.gsub regex, "\\k<key>\\k<eql>\\k<left>#{params[:value]}\\k<right>\\k<comment>"
23
+ found = true
24
+ temp_file.puts line
25
+ end
26
+ file.close
27
+ end
28
+ temp_file.rewind
29
+ temp_file.close
30
+ FileUtils.mv(temp_file.path, path)
31
+ temp_file.unlink
32
+ end
33
+ end
34
+ end
35
+
36
+ #####################################################
37
+ # @!group Documentation
38
+ #####################################################
39
+ def self.available_options
40
+ [
41
+ FastlaneCore::ConfigItem.new(key: :app_project_dir,
42
+ env_name: "BOWL_APP_PROJECT_DIR",
43
+ description: "The path to the application source folder in the Android project (default: android/app)",
44
+ optional: true,
45
+ type: String,
46
+ default_value: "android/app"),
47
+ FastlaneCore::ConfigItem.new(key: :key,
48
+ description: "The property key",
49
+ type: String),
50
+ FastlaneCore::ConfigItem.new(key: :value,
51
+ description: "The property value",
52
+ type: String)
53
+ ]
54
+ end
55
+
56
+ def self.description
57
+ "Set the value of your project"
58
+ end
59
+
60
+ def self.details
61
+ [
62
+ "This action will set the value directly in build.gradle . "
63
+ ].join("\n")
64
+ end
65
+
66
+ def self.authors
67
+ ["Benjamin Wulff"]
68
+ end
69
+
70
+ def self.is_supported?(platform)
71
+ platform == :android
72
+ end
73
+ end
74
+ end
75
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane_core/ui/ui'
2
+
3
+ module Fastlane
4
+ UI = FastlaneCore::UI unless Fastlane.const_defined?("UI")
5
+
6
+ module Helper
7
+ class BowlHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::BowlHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the bowl plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module Bowl
3
+ VERSION = "0.1.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,205 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-bowl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Benjamin Wulff
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2019-03-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rqrcode
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
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: faraday
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
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: 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: bundler
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: rake
99
+ requirement: !ruby/object:Gem::Requirement
100
+ requirements:
101
+ - - ">="
102
+ - !ruby/object:Gem::Version
103
+ version: '0'
104
+ type: :development
105
+ prerelease: false
106
+ version_requirements: !ruby/object:Gem::Requirement
107
+ requirements:
108
+ - - ">="
109
+ - !ruby/object:Gem::Version
110
+ version: '0'
111
+ - !ruby/object:Gem::Dependency
112
+ name: rubocop
113
+ requirement: !ruby/object:Gem::Requirement
114
+ requirements:
115
+ - - '='
116
+ - !ruby/object:Gem::Version
117
+ version: 0.49.1
118
+ type: :development
119
+ prerelease: false
120
+ version_requirements: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '='
123
+ - !ruby/object:Gem::Version
124
+ version: 0.49.1
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
+ - !ruby/object:Gem::Dependency
154
+ name: fastlane
155
+ requirement: !ruby/object:Gem::Requirement
156
+ requirements:
157
+ - - ">="
158
+ - !ruby/object:Gem::Version
159
+ version: 2.115.0
160
+ type: :development
161
+ prerelease: false
162
+ version_requirements: !ruby/object:Gem::Requirement
163
+ requirements:
164
+ - - ">="
165
+ - !ruby/object:Gem::Version
166
+ version: 2.115.0
167
+ description:
168
+ email: benjamin.wulff@me.com
169
+ executables: []
170
+ extensions: []
171
+ extra_rdoc_files: []
172
+ files:
173
+ - LICENSE
174
+ - README.md
175
+ - lib/fastlane/plugin/bowl.rb
176
+ - lib/fastlane/plugin/bowl/actions/bowl_action.rb
177
+ - lib/fastlane/plugin/bowl/actions/get_gradle_property_action.rb
178
+ - lib/fastlane/plugin/bowl/actions/set_gradle_property_action.rb
179
+ - lib/fastlane/plugin/bowl/helper/bowl_helper.rb
180
+ - lib/fastlane/plugin/bowl/version.rb
181
+ homepage: https://github.com/Gaia-Nutrition/fastlane-plugin-bowl
182
+ licenses:
183
+ - MIT
184
+ metadata: {}
185
+ post_install_message:
186
+ rdoc_options: []
187
+ require_paths:
188
+ - lib
189
+ required_ruby_version: !ruby/object:Gem::Requirement
190
+ requirements:
191
+ - - ">="
192
+ - !ruby/object:Gem::Version
193
+ version: '0'
194
+ required_rubygems_version: !ruby/object:Gem::Requirement
195
+ requirements:
196
+ - - ">="
197
+ - !ruby/object:Gem::Version
198
+ version: '0'
199
+ requirements: []
200
+ rubyforge_project:
201
+ rubygems_version: 2.7.6
202
+ signing_key:
203
+ specification_version: 4
204
+ summary: Handles uploads to BOWL backend
205
+ test_files: []