cdnconnect-api 0.2.2 → 0.2.3

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +1 -1
  3. data/lib/cdnconnect_api.rb +1 -2
  4. metadata +1 -1
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e14424ffa772eae0884c92cbe5ca7f372c708dff
4
- data.tar.gz: 8acc7e7039ecd25f8962738a20c63f5e0d94c5b8
3
+ metadata.gz: 2c28429da3abb529aacec571e7da9527e2dd06cf
4
+ data.tar.gz: f5fdbb59e89f3b6aafc1a942d43cf32b8bbe97ee
5
5
  SHA512:
6
- metadata.gz: cc1434d7a16cda0a7e02bfdce07a0a5664d38a358afb0867b78d41f64b7b0ce7026d9eb8eb1eb403fae6ca64ddf5e89d5f022524160fa2038e84937a89dce4cb
7
- data.tar.gz: fe16c5b082c3dcdf28b00292b685a9d2b53e47101380f3290e6385422624660f106c1fab53b07cbf9fc73a4c8121ee19cefe347e6d1fcee816ff6a67b8dabd8a
6
+ metadata.gz: 3c49d32e1f6a796f7ce104d8f06e2c3425d4e3fb6c52c0fe9494b8aad0dd26ae328f7642fe3245291250eabdd6b8d0a65709211fabbfdbca14ff505bb060c9bd
7
+ data.tar.gz: ed852974c26388f86a7c80054d4d2f66f4ac277567bf49de6b0e8fa58902d95b149d3aa91f3097710b82f3f03cb13fa59d83a18281f610f554c7d2c9ca306166
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # CDN Connect API Ruby Client, v0.2.2
1
+ # CDN Connect API Ruby Client, v0.2.3
2
2
 
3
3
  CDN Connect makes it easier to manage production assets for teams of developers and designers, all while serving files from a fast content delivery network. Features include image optimization, resizing, cropping, filters, changing output formats, convert to WebP image format, etc. The CDN Connect API Ruby Client makes it easier to upload files and interact with the API with only a few lines of code.
4
4
 
@@ -25,7 +25,7 @@ module CDNConnect
25
25
  class APIClient
26
26
 
27
27
  @@application_name = 'cdnconnect-api-ruby'
28
- @@application_version = '0.2.1'
28
+ @@application_version = '0.2.3'
29
29
  @@user_agent = @@application_name + ' v' + @@application_version
30
30
  @@api_host = 'https://api.cdnconnect.com'
31
31
  @@api_version = 'v1'
@@ -210,7 +210,6 @@ module CDNConnect
210
210
  # Uses the Faraday: https://github.com/lostisland/faraday
211
211
  conn = Faraday.new() do |req|
212
212
  req.headers['User-Agent'] = @@user_agent
213
- req.headers['Authorization'] = 'Bearer ' + @access_token
214
213
  req.request :multipart
215
214
  req.adapter :net_http
216
215
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cdnconnect-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.2.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Adam Bradley