batchly_api 0.6.2 → 0.6.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.
- checksums.yaml +4 -4
- data/lib/batchly_api/configuration.rb +10 -4
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 040ef181c1b70d261fe23046aefa22f52c4885d5
|
|
4
|
+
data.tar.gz: 8004ed4dab464df1a815c9dc52ecf486844718f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0c94c43fc761c273e298f83c0ab00babfefcdacef5a4acd92b579ce5e39497af27f75548b55a3aaef7f7ad72c90292892c38c4276909482b7b1ec750b22fc8c1
|
|
7
|
+
data.tar.gz: 09e5f85bc77f016aa2a975fbfdb3824cfcc4b74eaf12f3bf1e42cff20104c77470fcbfdaf6defeedb52cce09824cd1e24c6bb83112b79721f12e53480dddc1f1
|
|
@@ -1,16 +1,22 @@
|
|
|
1
|
-
# This file was automatically generated for support.batchly.net by APIMATIC BETA v2.0 on 11/
|
|
1
|
+
# This file was automatically generated for support.batchly.net by APIMATIC BETA v2.0 on 11/18/2015
|
|
2
2
|
|
|
3
|
-
module BatchlyApi
|
|
3
|
+
module BatchlyApi
|
|
4
4
|
class Configuration
|
|
5
5
|
|
|
6
6
|
# The base Uri for API calls
|
|
7
|
-
@BASE_URI = "http://
|
|
7
|
+
@BASE_URI = "http://api.corrs.batchly.net"
|
|
8
8
|
|
|
9
|
+
# The access key for batchly
|
|
10
|
+
@API_KEY = "UPDATE YOUR GENERATED API KEY HERE"
|
|
11
|
+
|
|
12
|
+
# The access key for batchly
|
|
13
|
+
@API_SECRET = "UPDATE YOUR GENERATED API SECRET HERE"
|
|
9
14
|
|
|
10
15
|
# create the getters and setters
|
|
11
16
|
class << self
|
|
12
17
|
attr_accessor :BASE_URI
|
|
13
|
-
|
|
18
|
+
attr_accessor :API_KEY
|
|
19
|
+
attr_accessor :API_SECRET
|
|
14
20
|
end
|
|
15
21
|
end
|
|
16
22
|
end
|