fastlane-plugin-redmine_file_upload 4.0.1

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
+ SHA256:
3
+ metadata.gz: e6dbc95690f62ae965dd45f8a4877005e9c1a557bb84c65e60a58d0999c54b66
4
+ data.tar.gz: 12b576b8edce800a05f0feba612205f619181908de87ca06c50c25ad4778f758
5
+ SHA512:
6
+ metadata.gz: ed648af7387316334c6233e8e208e8417d4e0f48fd44174c52a88656f19ae34b02ec953d0781bcb6888b0956c1c717eb8559a7d2670fb646729829998d386703
7
+ data.tar.gz: f62729b5b357a50dca54ab45ad4a749b854fedaa0a3342178cfb57cb4a291208f0c21c9e33b3a8bcad1a3eaaaa3be474b9aa039726ba4941bea21d8389f91333
data/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 Mattia Salvetti
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,67 @@
1
+ # redmine_file_upload plugin
2
+
3
+ [![fastlane Plugin Badge](https://rawcdn.githack.com/fastlane/fastlane/master/fastlane/assets/plugin-badge.svg)](https://rubygems.org/gems/fastlane-plugin-redmine_file_upload)
4
+
5
+ ## Forked From
6
+
7
+ This project is a Forked from [_This Archived Repo_](https://github.com/salmattia/fastlane-plugin-redmine_file_upload)
8
+
9
+ Main reason is to use the functionality in new Ryby Version as the old repo only supports Ruby 2.x now the current supports 3.3 or more, as we have tested upto Ruby Version 3.3
10
+ Pull Request are welcome.
11
+
12
+ ## Getting Started
13
+
14
+ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To get started with `fastlane-plugin-redmine_file_upload`, add it to your project by running:
15
+
16
+ ```bash
17
+ fastlane add_plugin redmine_file_upload
18
+ ```
19
+
20
+ You may use the below method too if you wish but not advised.
21
+
22
+ For now to implement this you will have to add below like to your Pluginfile
23
+
24
+ ```bash
25
+ gem "fastlane-plugin-redmine_file_upload", git: "https://github.com/pravindodia/fastlane-plugin-redmine_file_upload"
26
+ ```
27
+
28
+
29
+ ## About redmine_file_upload
30
+
31
+ A fastlane plugin to upload file contents to Redmine
32
+
33
+ This plugin uploads a content to a Redmine host by using POST /uploads.json API
34
+ See http://www.redmine.org/projects/redmine/wiki/Rest_api#Attaching-files
35
+
36
+ ## Example
37
+
38
+ 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`.
39
+
40
+ ## Run tests for this plugin
41
+
42
+ To run both the tests, and code style validation, run
43
+
44
+ ```
45
+ rake
46
+ ```
47
+
48
+ To automatically fix many of the styling issues, use
49
+ ```
50
+ rubocop -a
51
+ ```
52
+
53
+ ## Issues and Feedback
54
+
55
+ For any other issues and feedback about this plugin, please submit it to this repository.
56
+
57
+ ## Troubleshooting
58
+
59
+ If you have trouble using plugins, check out the [Plugins Troubleshooting](https://docs.fastlane.tools/plugins/plugins-troubleshooting/) guide.
60
+
61
+ ## Using _fastlane_ Plugins
62
+
63
+ For more information about how the `fastlane` plugin system works, check out the [Plugins documentation](https://docs.fastlane.tools/plugins/create-plugin/).
64
+
65
+ ## About _fastlane_
66
+
67
+ _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,156 @@
1
+ module Fastlane
2
+ module Actions
3
+ class RedmineFilePostAction < Action
4
+ def self.run(params)
5
+ require 'net/http'
6
+ require 'uri'
7
+ require 'json'
8
+
9
+ redmine_url = params[:redmine_host]
10
+ api_key = params[:redmine_api_key]
11
+ redmine_use_sslhost = "true"
12
+ username = params[:redmine_username]
13
+ password = params[:redmine_password]
14
+ project = params[:redmine_project]
15
+ token = params[:file_token]
16
+ file_name = params[:file_name]
17
+ file_version = params[:file_version]
18
+ file_description = params[:file_description]
19
+
20
+ unless redmine_use_sslhost.nil?
21
+ redmine_use_sslhost = params[:redmine_use_ssl]
22
+ end
23
+
24
+ upload_file_uri = URI.parse(redmine_url + "/projects/#{project}/files.json")
25
+ # prepare request with token previously got from upload
26
+
27
+ json_content = {
28
+ "file" => {
29
+ "token" => token
30
+ }
31
+ }
32
+
33
+ if file_version != nil
34
+ json_content["file"]["version_id"] = file_version
35
+ end
36
+ if file_name != nil
37
+ json_content["file"]["filename"] = file_name
38
+ end
39
+ if file_description != nil
40
+ json_content["file"]["description"] = file_description
41
+ end
42
+
43
+ file_body = JSON.pretty_generate(json_content)
44
+ UI.message("File post with content #{file_body}")
45
+
46
+ # Create the HTTP objects
47
+ http_file_post = Net::HTTP.new(upload_file_uri.host, upload_file_uri.port)
48
+ if redmine_use_sslhost == "true"
49
+ http_file_post.use_ssl = true
50
+ http_file_post.verify_mode = OpenSSL::SSL::VERIFY_NONE
51
+ end
52
+ request_file = Net::HTTP::Post.new(upload_file_uri.request_uri)
53
+
54
+ request_file["Content-Type"] = "application/json"
55
+ unless api_key.nil?
56
+ request_file["X-Redmine-API-Key"] = api_key.to_s
57
+ end
58
+ unless username.nil? || password.nil?
59
+ request_file.basic_auth(username, password)
60
+ end
61
+
62
+ request_file.body = file_body
63
+ # Send the request
64
+ request_file = http_file_post.request(request_file)
65
+
66
+ case request_file
67
+ when Net::HTTPSuccess
68
+ UI.success("File uploaded successfully")
69
+ else
70
+ UI.error(request_file.value)
71
+ end
72
+ end
73
+
74
+ def self.description
75
+ "Uploads a file in a Redmine Files section of a given Redmine project"
76
+ end
77
+
78
+ def self.authors
79
+ ["Mattia Salvetti"]
80
+ end
81
+
82
+ def self.return_value
83
+ # If your method provides a return value, you can describe here what it does
84
+ end
85
+
86
+ def self.details
87
+ # Optional:
88
+ "Uploads a file in a Redmine host under files section of specified Redmine project."
89
+ end
90
+
91
+ def self.available_options
92
+ [
93
+ FastlaneCore::ConfigItem.new(key: :redmine_host,
94
+ env_name: "REDMINE_HOST",
95
+ description: "Redmine host where upload file. e.g. ",
96
+ optional: false,
97
+ type: String),
98
+ FastlaneCore::ConfigItem.new(key: :redmine_username,
99
+ env_name: "REDMINE_USERNAME",
100
+ description: "Redmine username (optional). An API key can be provided instead",
101
+ optional: true,
102
+ type: String),
103
+ FastlaneCore::ConfigItem.new(key: :redmine_password,
104
+ env_name: "REDMINE_PASSWORD",
105
+ description: "Redmine password (optional). An API key can be provided instead",
106
+ optional: true,
107
+ type: String),
108
+ FastlaneCore::ConfigItem.new(key: :redmine_api_key,
109
+ env_name: "REDMINE_API_KEY",
110
+ description: "Redmine API key (optional). username and password can be provided instead",
111
+ optional: true,
112
+ type: String),
113
+ FastlaneCore::ConfigItem.new(key: :redmine_use_ssl,
114
+ env_name: "REDMINE_USE_SSL",
115
+ description: "Redmine USE_SSL key (optional). it use use plain http instead of https",
116
+ optional: true,
117
+ type: String),
118
+ FastlaneCore::ConfigItem.new(key: :redmine_project,
119
+ env_name: "REDMINE_PROJECT",
120
+ description: "Project of redmine",
121
+ optional: false,
122
+ type: String),
123
+ FastlaneCore::ConfigItem.new(key: :file_token,
124
+ env_name: "FILE_TOKEN",
125
+ description: "Token of file previously released",
126
+ optional: false,
127
+ type: String),
128
+ FastlaneCore::ConfigItem.new(key: :file_name,
129
+ env_name: "FILE_NAME",
130
+ description: "FIle name",
131
+ optional: false,
132
+ type: String),
133
+ FastlaneCore::ConfigItem.new(key: :file_version,
134
+ env_name: "FILE_VERSION",
135
+ description: "Version of file",
136
+ optional: true,
137
+ type: String),
138
+ FastlaneCore::ConfigItem.new(key: :file_description,
139
+ env_name: "FILE_DESCRIPTION",
140
+ description: "Description of file to upload",
141
+ optional: true,
142
+ type: String)
143
+
144
+ ]
145
+ end
146
+
147
+ def self.is_supported?(platform)
148
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
149
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
150
+ #
151
+ # [:ios, :mac, :android].include?(platform)
152
+ true
153
+ end
154
+ end
155
+ end
156
+ end
@@ -0,0 +1,147 @@
1
+ require 'fastlane/action'
2
+ require_relative '../helper/redmine_file_upload_helper'
3
+
4
+ module Fastlane
5
+ module Actions
6
+ module SharedValues
7
+ REDMINE_UPLOAD_FILE_TOKEN = :REDMINE_UPLOAD_FILE_TOKEN
8
+ REDMINE_UPLOAD_FILE_NAME = :REDMINE_UPLOAD_FILE_NAME
9
+ end
10
+ class RedmineFileUploadAction < Action
11
+ def self.run(params)
12
+ require 'net/http'
13
+ require 'net/http/uploadprogress'
14
+ require 'uri'
15
+ require 'json'
16
+
17
+ # getting parameters
18
+ file_path = params[:file_path]
19
+ file_name = File.basename(file_path) unless file_path.nil?
20
+
21
+ Actions.lane_context[SharedValues::REDMINE_UPLOAD_FILE_NAME] = file_name
22
+
23
+ redmine_url = params[:redmine_host]
24
+ api_key = params[:redmine_api_key]
25
+ redmine_use_sslhost = "true"
26
+ username = params[:redmine_username]
27
+ password = params[:redmine_password]
28
+
29
+ unless redmine_use_sslhost.nil?
30
+ redmine_use_sslhost = params[:redmine_use_ssl]
31
+ end
32
+
33
+ upload_content_uri = URI.parse(redmine_url + '/uploads.json'+'?filename='+file_name)
34
+ UI.message("Start file upload \"#{file_name}\" to Redmine API #{upload_content_uri}")
35
+
36
+ token = nil
37
+ response_upload_content = nil
38
+ File.open(file_path, 'rb') do |io|
39
+ # Create the HTTP objects
40
+ http_upload_content = Net::HTTP.new(upload_content_uri.host, upload_content_uri.port)
41
+
42
+ if redmine_use_sslhost == "true"
43
+ http_upload_content.use_ssl = true
44
+ http_upload_content.verify_mode = OpenSSL::SSL::VERIFY_NONE
45
+ end
46
+
47
+ request_upload_content = Net::HTTP::Post.new(upload_content_uri.request_uri)
48
+ UI.message("Request upload content #{upload_content_uri.port}")
49
+ request_upload_content["Content-Type"] = "application/octet-stream"
50
+ unless api_key.nil?
51
+ request_upload_content["X-Redmine-API-Key"] = api_key.to_s
52
+ end
53
+ unless username.nil? || password.nil?
54
+ request_upload_content.basic_auth(username, password)
55
+ end
56
+
57
+ request_upload_content.content_length = io.size
58
+ request_upload_content.body_stream = io
59
+ # print upload progress
60
+ Net::HTTP::UploadProgress.new(request_upload_content) do |progress|
61
+ printf("\rUploading \"#{file_name}\"... #{100 * progress.upload_size / io.size}%%")
62
+ end
63
+ # Send the request
64
+ response_upload_content = http_upload_content.request(request_upload_content)
65
+ printf("\n")
66
+ end
67
+ case response_upload_content
68
+ when Net::HTTPSuccess
69
+ # get token from upload content response
70
+ token = JSON.parse(response_upload_content.body)['upload']['token']
71
+ UI.success("Content uploaded! File token released: #{token}")
72
+ Actions.lane_context[SharedValues::REDMINE_UPLOAD_FILE_TOKEN] = token
73
+ else
74
+ UI.error(response_upload_content.to_s)
75
+ end
76
+ end
77
+
78
+ def self.description
79
+ "A fastlane plugin to upload file contents to Redmine"
80
+ end
81
+
82
+ def self.authors
83
+ ["Mattia Salvetti"]
84
+ end
85
+
86
+ def self.output
87
+ [
88
+ ['REDMINE_UPLOAD_FILE_TOKEN', 'Token release as response of redmine POST /uploads.json'],
89
+ ['REDMINE_UPLOAD_FILE_NAME', 'Uploading file name']
90
+ ]
91
+ end
92
+
93
+ def self.return_value
94
+ "Returns a token released from redmine http POST to /uploads.json."
95
+ end
96
+
97
+ def self.details
98
+ # Optional:
99
+ "This plugin uses Redmine REST API to attach a generic file and release a token to use for attachment binding to any Redmine entity. It makes a http request to a redmine host POST /uploads.json
100
+ See APIs documentations at http://www.redmine.org/projects/redmine/wiki/Rest_api"
101
+ end
102
+
103
+ def self.available_options
104
+ [
105
+ FastlaneCore::ConfigItem.new(key: :redmine_host,
106
+ env_name: "REDMINE_HOST",
107
+ description: "Redmine host where upload file. e.g. ",
108
+ optional: false,
109
+ type: String),
110
+ FastlaneCore::ConfigItem.new(key: :redmine_username,
111
+ env_name: "REDMINE_USERNAME",
112
+ description: "Redmine username (optional). An API key can be provided instead",
113
+ optional: true,
114
+ type: String),
115
+ FastlaneCore::ConfigItem.new(key: :redmine_password,
116
+ env_name: "REDMINE_PASSWORD",
117
+ description: "Redmine password (optional). An API key can be provided instead",
118
+ optional: true,
119
+ type: String),
120
+ FastlaneCore::ConfigItem.new(key: :redmine_api_key,
121
+ env_name: "REDMINE_API_KEY",
122
+ description: "Redmine API key (optional). username and password can be provided instead",
123
+ optional: true,
124
+ type: String),
125
+ FastlaneCore::ConfigItem.new(key: :redmine_use_ssl,
126
+ env_name: "REDMINE_USE_SSL",
127
+ description: "Redmine USE_SSL key (optional). it use use plain http instead of https",
128
+ optional: true,
129
+ type: String),
130
+ FastlaneCore::ConfigItem.new(key: :file_path,
131
+ env_name: "FILE_PATH",
132
+ description: "Local path of file to upload to redmine",
133
+ optional: false,
134
+ type: String)
135
+ ]
136
+ end
137
+
138
+ def self.is_supported?(platform)
139
+ # Adjust this if your plugin only works for a particular platform (iOS vs. Android, for example)
140
+ # See: https://docs.fastlane.tools/advanced/#control-configuration-by-lane-and-by-platform
141
+ #
142
+ # [:ios, :mac, :android].include?(platform)
143
+ true
144
+ end
145
+ end
146
+ end
147
+ 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 RedmineFileUploadHelper
8
+ # class methods that you define here become available in your action
9
+ # as `Helper::RedmineFileUploadHelper.your_method`
10
+ #
11
+ def self.show_message
12
+ UI.message("Hello from the redmine_file_upload plugin helper!")
13
+ end
14
+ end
15
+ end
16
+ end
@@ -0,0 +1,5 @@
1
+ module Fastlane
2
+ module RedmineFileUpload
3
+ VERSION = "4.0.1"
4
+ end
5
+ end
@@ -0,0 +1,16 @@
1
+ require 'fastlane/plugin/redmine_file_upload/version'
2
+
3
+ module Fastlane
4
+ module RedmineFileUpload
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::RedmineFileUpload.all_classes.each do |current|
15
+ require current
16
+ end
@@ -0,0 +1,42 @@
1
+ require 'net/http'
2
+ require 'tempfile'
3
+ require 'securerandom'
4
+
5
+ class Net::HTTP::UploadProgress
6
+ attr_reader :upload_size
7
+
8
+ def initialize(req, &block)
9
+ @req = req
10
+ @callback = block
11
+ @upload_size = 0
12
+ if req.body_stream
13
+ @io = req.body_stream
14
+ req.body_stream = self
15
+ elsif req.instance_variable_get(:@body_data)
16
+ raise NotImplementedError if req.chunked?
17
+ raise NotImplementedError if /\Amultipart\/form-data\z/i !~ req.content_type
18
+ opt = req.instance_variable_get(:@form_option).dup
19
+ opt[:boundary] ||= SecureRandom.urlsafe_base64(40)
20
+ req.set_content_type(req.content_type, boundary: opt[:boundary])
21
+ file = Tempfile.new('multipart')
22
+ file.binmode
23
+ req.send(:encode_multipart_form_data, file, req.instance_variable_get(:@body_data), opt)
24
+ file.rewind
25
+ req.content_length = file.size
26
+ @io = file
27
+ req.body_stream = self
28
+ else
29
+ raise NotImplementedError
30
+ end
31
+ end
32
+
33
+ def readpartial(maxlen, outbuf)
34
+ begin
35
+ str = @io.readpartial(maxlen, outbuf)
36
+ ensure
37
+ @callback.call(self) unless @upload_size.zero?
38
+ end
39
+ @upload_size += str.length
40
+ str
41
+ end
42
+ end
metadata ADDED
@@ -0,0 +1,176 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: fastlane-plugin-redmine_file_upload
3
+ version: !ruby/object:Gem::Version
4
+ version: 4.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Pravin Dodia
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2024-06-06 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: rspec_junit_formatter
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: rake
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: rubocop
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '='
88
+ - !ruby/object:Gem::Version
89
+ version: 0.49.1
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '='
95
+ - !ruby/object:Gem::Version
96
+ version: 0.49.1
97
+ - !ruby/object:Gem::Dependency
98
+ name: rubocop-require_tools
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: simplecov
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: fastlane
127
+ requirement: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - ">="
130
+ - !ruby/object:Gem::Version
131
+ version: 2.104.0
132
+ type: :development
133
+ prerelease: false
134
+ version_requirements: !ruby/object:Gem::Requirement
135
+ requirements:
136
+ - - ">="
137
+ - !ruby/object:Gem::Version
138
+ version: 2.104.0
139
+ description:
140
+ email: pravindodia@gmail.com
141
+ executables: []
142
+ extensions: []
143
+ extra_rdoc_files: []
144
+ files:
145
+ - LICENSE
146
+ - README.md
147
+ - lib/fastlane/plugin/redmine_file_upload.rb
148
+ - lib/fastlane/plugin/redmine_file_upload/actions/redmine_file_post.rb
149
+ - lib/fastlane/plugin/redmine_file_upload/actions/redmine_file_upload_action.rb
150
+ - lib/fastlane/plugin/redmine_file_upload/helper/redmine_file_upload_helper.rb
151
+ - lib/fastlane/plugin/redmine_file_upload/version.rb
152
+ - lib/net/http/uploadprogress.rb
153
+ homepage: https://github.com/pravindodia/fastlane-plugin-redmine_file_upload
154
+ licenses:
155
+ - MIT
156
+ metadata: {}
157
+ post_install_message:
158
+ rdoc_options: []
159
+ require_paths:
160
+ - lib
161
+ required_ruby_version: !ruby/object:Gem::Requirement
162
+ requirements:
163
+ - - ">="
164
+ - !ruby/object:Gem::Version
165
+ version: '0'
166
+ required_rubygems_version: !ruby/object:Gem::Requirement
167
+ requirements:
168
+ - - ">="
169
+ - !ruby/object:Gem::Version
170
+ version: '0'
171
+ requirements: []
172
+ rubygems_version: 3.5.11
173
+ signing_key:
174
+ specification_version: 4
175
+ summary: A fastlane plugin to upload file contents to Redmine
176
+ test_files: []