transloadit 2.0.0 → 2.0.1

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: d66c5ecc22a6dc2615019e622dca2f112ac7cda1
4
- data.tar.gz: 608bfd88a07b6eb14a53e32d028851d86aa0a484
3
+ metadata.gz: 51844f6de69eb87292ee3a8b34a0121c5b39024b
4
+ data.tar.gz: e9239659a9091051cdfcb602ba14ec6fea973340
5
5
  SHA512:
6
- metadata.gz: e7577eb0f960c787517359bfff2f7aab1d16c0e13c2245c408a4bf8cb8efcde79af19d271afdf9aa5affc37d691b00ef14fd8a8f066fead33055b119d3b235b7
7
- data.tar.gz: dfafe3de4fa8ea264c266293116f2358928b6dc7170930484ae336a7159e91f66dd10c5586ce0e3d71141e9181953945490469583043b8c8a0226e0ef425d64c
6
+ metadata.gz: 981c5131b6c960744a952ffcc1a7eebbf867d17ee239adb5edd229676bc1f1ce515e33591c75256de0d918776ebb91add176c4d3d6dd6969d558b7f34030b4d5
7
+ data.tar.gz: 3b72a678ff9d20769dfc4180fb5c302ef13b5e49c126a8e2a30ce25f427d3a9137d72ffe38fb9600ff7706d35d7d58dd2827b6f17c7203c41a335e3685e4e22a
@@ -1,3 +1,7 @@
1
+ ### 2.0.1 / 2017-01-23 ###
2
+
3
+ * Use the ssl enabled url as the API base url (@ifedapoolarewaju)
4
+
1
5
  ### 2.0.0 / 2016-12-03 ###
2
6
 
3
7
  * Drop support for EOL'd Ruby 1.9.x and Ruby 2.0, please use version 1.2.0 if you need support for older
@@ -10,7 +10,7 @@ require 'openssl'
10
10
  #
11
11
  class Transloadit::Request
12
12
  # The default Transloadit API endpoint.
13
- API_ENDPOINT = URI.parse('http://api2.transloadit.com/')
13
+ API_ENDPOINT = URI.parse('https://api2.transloadit.com/')
14
14
 
15
15
  # The default headers to send to the API.
16
16
  API_HEADERS = { 'User-Agent' => "Transloadit Ruby SDK #{Transloadit::VERSION}" }
@@ -1,3 +1,3 @@
1
1
  class Transloadit
2
- VERSION = '2.0.0'
2
+ VERSION = '2.0.1'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: transloadit
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.0
4
+ version: 2.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Touset
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-12-03 00:00:00.000000000 Z
12
+ date: 2017-01-23 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rest-client