cdnconnect-api 0.2.4 → 0.2.5
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.
- data/README.md +1 -1
- data/lib/cdnconnect_api.rb +1 -1
- metadata +82 -64
- checksums.yaml +0 -7
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# CDN Connect API Ruby Client, v0.2.
|
|
1
|
+
# CDN Connect API Ruby Client, v0.2.5
|
|
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
|
|
data/lib/cdnconnect_api.rb
CHANGED
|
@@ -25,7 +25,7 @@ module CDNConnect
|
|
|
25
25
|
class APIClient
|
|
26
26
|
|
|
27
27
|
@@application_name = 'cdnconnect-api-ruby'
|
|
28
|
-
@@application_version = '0.2.
|
|
28
|
+
@@application_version = '0.2.5'
|
|
29
29
|
@@user_agent = @@application_name + ' v' + @@application_version
|
|
30
30
|
@@api_host = 'https://api.cdnconnect.com'
|
|
31
31
|
@@api_version = 'v1'
|
metadata
CHANGED
|
@@ -1,96 +1,114 @@
|
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cdnconnect-api
|
|
3
|
-
version: !ruby/object:Gem::Version
|
|
4
|
-
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
hash: 29
|
|
5
|
+
prerelease:
|
|
6
|
+
segments:
|
|
7
|
+
- 0
|
|
8
|
+
- 2
|
|
9
|
+
- 5
|
|
10
|
+
version: 0.2.5
|
|
5
11
|
platform: ruby
|
|
6
|
-
authors:
|
|
12
|
+
authors:
|
|
7
13
|
- Adam Bradley
|
|
8
14
|
autorequire:
|
|
9
15
|
bindir: bin
|
|
10
16
|
cert_chain: []
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
17
|
+
|
|
18
|
+
date: 2013-08-04 00:00:00 Z
|
|
19
|
+
dependencies:
|
|
20
|
+
- !ruby/object:Gem::Dependency
|
|
14
21
|
name: faraday
|
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
|
16
|
-
requirements:
|
|
17
|
-
- - '>='
|
|
18
|
-
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.8.7
|
|
20
|
-
type: :runtime
|
|
21
22
|
prerelease: false
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
24
|
+
none: false
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
hash: 49
|
|
29
|
+
segments:
|
|
30
|
+
- 0
|
|
31
|
+
- 8
|
|
32
|
+
- 7
|
|
26
33
|
version: 0.8.7
|
|
27
|
-
- !ruby/object:Gem::Dependency
|
|
28
|
-
name: signet
|
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
|
30
|
-
requirements:
|
|
31
|
-
- - '>='
|
|
32
|
-
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.5.0
|
|
34
34
|
type: :runtime
|
|
35
|
+
version_requirements: *id001
|
|
36
|
+
- !ruby/object:Gem::Dependency
|
|
37
|
+
name: signet
|
|
35
38
|
prerelease: false
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
version: '0'
|
|
39
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
|
+
requirements:
|
|
42
|
+
- - ">="
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
hash: 5
|
|
45
|
+
segments:
|
|
46
|
+
- 0
|
|
47
|
+
- 4
|
|
48
|
+
- 5
|
|
49
|
+
version: 0.4.5
|
|
48
50
|
type: :runtime
|
|
51
|
+
version_requirements: *id002
|
|
52
|
+
- !ruby/object:Gem::Dependency
|
|
53
|
+
name: json
|
|
49
54
|
prerelease: false
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
55
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
|
56
|
+
none: false
|
|
57
|
+
requirements:
|
|
58
|
+
- - ">="
|
|
59
|
+
- !ruby/object:Gem::Version
|
|
60
|
+
hash: 3
|
|
61
|
+
segments:
|
|
62
|
+
- 0
|
|
63
|
+
version: "0"
|
|
64
|
+
type: :runtime
|
|
65
|
+
version_requirements: *id003
|
|
66
|
+
description: 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, etc. The CDN Connect API Ruby Client makes it easier to upload files and interact with the API. Most interactions with CDN Connect APIs require users to authorize applications via OAuth 2.0. This library simplifies the communication with CDN Connect even further allowing you to easily upload files and get information with only a few lines of code.
|
|
62
67
|
email: developer@cdnconnect.com
|
|
63
68
|
executables: []
|
|
69
|
+
|
|
64
70
|
extensions: []
|
|
65
|
-
|
|
71
|
+
|
|
72
|
+
extra_rdoc_files:
|
|
66
73
|
- README.md
|
|
67
|
-
files:
|
|
74
|
+
files:
|
|
68
75
|
- lib/cdnconnect_api.rb
|
|
69
76
|
- lib/cdnconnect_api/response.rb
|
|
70
77
|
- LICENSE
|
|
71
78
|
- README.md
|
|
72
79
|
homepage: http://www.cdnconnect.com/
|
|
73
80
|
licenses: []
|
|
74
|
-
|
|
81
|
+
|
|
75
82
|
post_install_message:
|
|
76
83
|
rdoc_options: []
|
|
77
|
-
|
|
84
|
+
|
|
85
|
+
require_paths:
|
|
78
86
|
- lib
|
|
79
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
88
|
+
none: false
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
hash: 3
|
|
93
|
+
segments:
|
|
94
|
+
- 0
|
|
95
|
+
version: "0"
|
|
96
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
|
+
none: false
|
|
98
|
+
requirements:
|
|
99
|
+
- - ">="
|
|
100
|
+
- !ruby/object:Gem::Version
|
|
101
|
+
hash: 3
|
|
102
|
+
segments:
|
|
103
|
+
- 0
|
|
104
|
+
version: "0"
|
|
89
105
|
requirements: []
|
|
106
|
+
|
|
90
107
|
rubyforge_project:
|
|
91
|
-
rubygems_version:
|
|
108
|
+
rubygems_version: 1.8.24
|
|
92
109
|
signing_key:
|
|
93
|
-
specification_version:
|
|
110
|
+
specification_version: 3
|
|
94
111
|
summary: Package Summary
|
|
95
112
|
test_files: []
|
|
113
|
+
|
|
96
114
|
has_rdoc:
|
checksums.yaml
DELETED
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
SHA1:
|
|
3
|
-
metadata.gz: b6b1028c11c95a10a423d91d02d7355f2521c09c
|
|
4
|
-
data.tar.gz: 93c36127d3c3036ffb4c22f14d04b7170fc66a02
|
|
5
|
-
SHA512:
|
|
6
|
-
metadata.gz: 309a6d775ae6332989764f153a4e4f51a7a96369046afe0798229915925ff7058a36ffb597fae35f17523288446181e512dd87918cf6b3496e2d11089697cdc0
|
|
7
|
-
data.tar.gz: 450d413018afe9699e79e3f1c85cb9e1f08b5a63c301e0fc6b28a352ad60df32bd719e75ade5dc4c538c4a1f60c6d3ba9eb2f8c47f61f9f81e17870a22fae949
|