fastlane-plugin-farol 0.4.4 → 0.4.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 593f123193b0ca1d890473372246b057ce9365a2
4
- data.tar.gz: ff3dd2eae68d521f8a65c44212b233f3316cfe13
3
+ metadata.gz: 65880fb5c88e3e8d187dd3be0972d7000eda7f5c
4
+ data.tar.gz: 15142428eda051e1703f52dc8fb22801faa8312a
5
5
  SHA512:
6
- metadata.gz: d56b16eff99749031cc35d23d817f9bc82d61d8f6a587630709e3755d309945111b47187382b159af4dd61b0642307c055713d5b4ab374a5320abb76b813b7c6
7
- data.tar.gz: 50d79269fc94017a85f4ecf57c07565d12dccf392c88b3bb5b564ec39db4fe47cf887fa610d1a19ffc2906f588b528e03f33de30070fd68265b89494bb0ef458
6
+ metadata.gz: af62c7ea42198c127bdd41cd3b24237b6131df09486bd3144ef0870a3732337a09d024e5cd6fd85d3df0828b45d01bd2d6de94e00e5fa2b882736e3e08c4fe70
7
+ data.tar.gz: ea2b872b1d6dc13067cd59e6a5a4ca5b5a5644582dd0e39a33eb55a277dc223d57f1f5acdc761fba9403592292cc3207488cab887f99f0a50f069492bdc19e21
@@ -7,7 +7,7 @@ module Fastlane
7
7
  farol_url = ENV["FAROL_URL"]
8
8
  end
9
9
 
10
- # Create Cognito credentials
10
+ # Create the URL to be called
11
11
  url = URI(farol_url + '/' + method)
12
12
  Net::HTTP.start(url.host, url.port,
13
13
  use_ssl: url.scheme == 'https') do |http|
@@ -19,6 +19,9 @@ module Fastlane
19
19
  end
20
20
  elsif verb == 'put'
21
21
  request = Net::HTTP::Put.new url
22
+ if form_data
23
+ request.set_form_data(form_data)
24
+ end
22
25
  else
23
26
  request = Net::HTTP::Get.new url
24
27
  end
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
2
  module Farol
3
- VERSION = "0.4.4"
3
+ VERSION = "0.4.5"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fastlane-plugin-farol
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.4
4
+ version: 0.4.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Felipe Plets
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-07-02 00:00:00.000000000 Z
11
+ date: 2017-07-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: pry