ringcentral_sdk 2.0.1 → 2.0.2
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/CHANGELOG.md +5 -0
- data/lib/ringcentral_sdk.rb +1 -1
- data/lib/ringcentral_sdk/rest/configuration.rb +1 -0
- 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: ac6822f8b15cf8ab672b665042f9432d992224eb
|
|
4
|
+
data.tar.gz: 76a3c932bea73201db8eb1d29a379abfe32245d5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4113777a1e6ca436d8a014e371d112cb35d9ca2fa9847d488ec3092250cb212c30757612a87ab11a3eaec4579b7f41dd7e312e9852b586c983e88034099782ed
|
|
7
|
+
data.tar.gz: aee6f1f01b21e973636575d4caa8da83d6501cacdf07657e43de2b91f847f479804ebe95fafd3bc4d6a4cc0cc9421ea66b176001c326be58752ef5c5c8b42631
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,10 @@
|
|
|
1
1
|
CHANGELOG
|
|
2
2
|
---------
|
|
3
|
+
- **2016-12-28**: 2.0.2
|
|
4
|
+
- Update
|
|
5
|
+
- Update to add retry for `504` error code as default in addition to `429`, `503`
|
|
6
|
+
- **2016-12-28**: 2.0.1
|
|
7
|
+
- Minor fixes
|
|
3
8
|
- **2016-12-28**: 2.0.0
|
|
4
9
|
- Breaking Changes
|
|
5
10
|
- New block-based config, replacing old method param and env config
|
data/lib/ringcentral_sdk.rb
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# RingCentralSdk is a SDK for the RingCentral REST API
|
|
2
2
|
module RingCentralSdk
|
|
3
|
-
VERSION = '2.0.
|
|
3
|
+
VERSION = '2.0.2'.freeze
|
|
4
4
|
|
|
5
5
|
RC_SERVER_PRODUCTION = 'https://platform.ringcentral.com'.freeze
|
|
6
6
|
RC_SERVER_SANDBOX = 'https://platform.devtest.ringcentral.com'.freeze
|