cloud_elements 0.2 → 0.2.1
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 +4 -4
- data/lib/cloud_elements.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 06f9bd2d6f20fb86f7fa3b42e4da702f0c065fb7
|
|
4
|
+
data.tar.gz: c82361f7fe9fb52ff2fb8abada20bc0c8e363720
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 882e98ece268299d311bc8c0b8ee454fb56033bfced93e12521af7e59d04c0c79113c2eba1e6693573f26f6fd4e2fdee13357b1958118b1c23925d1f3fc09680
|
|
7
|
+
data.tar.gz: 4f8e7d42a5e0b57e15eccf1075c312af94885f05533835d220aea7d4870a39322c846342c46260328264533c42ca30b27ccecbdd41dcf61dc1709086dd915382
|
data/lib/cloud_elements.rb
CHANGED
|
@@ -5,7 +5,7 @@ Class that allows connection to the Cloud Elements REST API.
|
|
|
5
5
|
All connections are made through the invoke method.
|
|
6
6
|
It utilized HTTMultiParty to make http requests.
|
|
7
7
|
=end
|
|
8
|
-
class
|
|
8
|
+
class ElementsConnector
|
|
9
9
|
def initialize(api_endpoint='https://console.cloud-elements.com/elements/api-v1')
|
|
10
10
|
@api_endpoint = api_endpoint # Endpoint to hit the api. Defaults to production
|
|
11
11
|
@headers = Hash.new # Headers for some requests
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloud_elements
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.2.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Rodriguez
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2012-01-
|
|
11
|
+
date: 2012-01-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: httmultiparty
|
|
@@ -24,14 +24,15 @@ dependencies:
|
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 0.3.10
|
|
27
|
-
description:
|
|
27
|
+
description: Cloud Elements Connector. Allows you to interact with the Elements API.
|
|
28
|
+
More info on the API at cloud-elements.com
|
|
28
29
|
email: christian.etpr10@gmail.com
|
|
29
30
|
executables: []
|
|
30
31
|
extensions: []
|
|
31
32
|
extra_rdoc_files: []
|
|
32
33
|
files:
|
|
33
34
|
- lib/cloud_elements.rb
|
|
34
|
-
homepage:
|
|
35
|
+
homepage: https://github.com/cloud-elements/elements-connector-ruby
|
|
35
36
|
licenses: []
|
|
36
37
|
metadata: {}
|
|
37
38
|
post_install_message:
|
|
@@ -53,5 +54,5 @@ rubyforge_project:
|
|
|
53
54
|
rubygems_version: 2.2.0
|
|
54
55
|
signing_key:
|
|
55
56
|
specification_version: 4
|
|
56
|
-
summary: Cloud Elements
|
|
57
|
+
summary: Cloud Elements Connector
|
|
57
58
|
test_files: []
|