fastlane-plugin-fileio_upload 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6b2797656cbc88257560ca62b56ef6b9355d6c29bceeafb4757f3b1a8297cb60
4
- data.tar.gz: e9168aabf569061e88547ec200a79b9c1bc96afa375f505d669c56815b2d9595
3
+ metadata.gz: a7afc9769c142a957ba71cea751f89f85d122d86ea464adcaa2d3136990458d4
4
+ data.tar.gz: b4240b4d4ffff0f1a4f51f07b26b77023c40a994eb1f382c1251cabf77742d83
5
5
  SHA512:
6
- metadata.gz: 72449f53ead7204447dfb0e8c43502f7e4aa2532f2e25b0f11cbf30485d0a11bb5d932e4a9cae7d7f0d548f3c1f51c72c3b3edebd37c4d9043ee8bd85c377a18
7
- data.tar.gz: 7ff3e1cb5db3ca1b83d0d2d783b583b0fc31d6986d2aff248b63003d33e40433dfaf6a01ffadb61eff8429e7cf0fad0b9c8a47353a3ccc99ed9060f641e570d9
6
+ metadata.gz: 883da6dacf01bab64b0ed2924d55778bc1e70f33ce4b1e7cac3a75a6cc103a00df74fdc535129cfd00b1deca464fb7cae35e7069bdf0b4458dc8cbd70c3f6031
7
+ data.tar.gz: 32371bd9af932acfc907edc4ccd33242a921e0cb91e4d1aac8587d5ef03d59889c6aa600c754b4d28d977ce65a1bef0b2e154f8fd017504d17b68535f3c65722
data/README.md CHANGED
@@ -9,6 +9,11 @@ This project is a [_fastlane_](https://github.com/fastlane/fastlane) plugin. To
9
9
  ```bash
10
10
  fastlane add_plugin fileio_upload
11
11
  ```
12
+ and add to your Gemfile
13
+
14
+ ```bash
15
+ gem "rest-client"
16
+ ```
12
17
 
13
18
  ## About fileio_upload
14
19
 
@@ -3,10 +3,16 @@ require_relative '../helper/fileio_upload_helper'
3
3
 
4
4
  module Fastlane
5
5
  module Actions
6
+
7
+ module SharedValues
8
+ UPLOAD_FILE_RESULT = :UPLOAD_FILE_RESULT
9
+ UPLOAD_FILE_LINK = :UPLOAD_FILE_LINK
10
+ end
11
+
6
12
  class FileioUploadAction < Action
7
13
  def self.run(params)
8
14
  Actions.verify_gem!('rest-client')
9
- fastlane_require 'rest-client'
15
+ require 'rest-client'
10
16
 
11
17
  file = params[:file]
12
18
  expiration = params[:expiration]
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module FileioUpload
3
- VERSION = "0.1.0"
3
+ VERSION = "0.2.0"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-fileio_upload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul Bancarel