@@ -37,14 +37,6 @@ RingCentral SDK for Ruby
37
37
38
38
A Ruby SDK for the [ RingCentral REST API] ( https://developers.ringcentral.com ) .
39
39
40
- ## Important Notes
41
-
42
- Version 2.0.0 introduces the following backward breaking changes:
43
-
44
- * SDK instantiation by moving to a block-based configuration
45
- * Removal of ` RingCentralSdk::REST::Config ` class
46
- * Removal of ` RingCentralSdk::REST::Client.authorize_user ` method
47
-
48
40
## Documentation
49
41
50
42
Full documentation and resources are available at:
@@ -88,12 +80,7 @@ client = RingCentralSdk::REST::Client.new do |config|
88
80
config.client_secret = ' myAppClientSecret'
89
81
config.server_url = RingCentralSdk ::RC_SERVER_SANDBOX
90
82
91
- # User info for password grant (optional)
92
- config.username = ' myUsername'
93
- config.extension = ' myExtension'
94
- config.password = ' myPassword'
95
-
96
- # JWT (optional)
83
+ # JWT Bearer Grant (optional)
97
84
config.jwt = ' myJwt'
98
85
99
86
# Set a custom logger (optional)
@@ -248,11 +235,25 @@ RingCentral Official SDKs
248
235
4 . Push to the branch (` git push origin my-new-feature ` )
249
236
5 . Create new Pull Request
250
237
238
+ ### Development
239
+
240
+ To build local development copy of the gem use:
241
+
242
+ ```
243
+ % gem build ringcentral_sdk.gemspec
244
+ ```
245
+
246
+ This will produce a file like: ` ringcentral_sdk-3.1.0.gem ` which you can install with:
247
+
248
+ ```
249
+ % gem install ringcentral_sdk-3.1.0.gem
250
+ ```
251
+
251
252
## License
252
253
253
- RingCentral SDK is available under an MIT-style license. See [ LICENSE.md ] ( LICENSE.md ) for details.
254
+ RingCentral SDK is available under an MIT-style license. See [ LICENSE] ( LICENSE ) for details.
254
255
255
- RingCentral SDK © ; 2015-2023 by John Wang
256
+ RingCentral SDK © ; 2015-2024 by John Wang
256
257
257
258
[ gem-version-svg ] : https://badge.fury.io/rb/ringcentral_sdk.svg
258
259
[ gem-version-url ] : http://badge.fury.io/rb/ringcentral_sdk
@@ -277,7 +278,7 @@ RingCentral SDK © 2015-2023 by John Wang
277
278
[ docs-rubydoc-svg ] : https://img.shields.io/badge/docs-rubydoc-blue.svg
278
279
[ docs-rubydoc-url ] : http://www.rubydoc.info/gems/ringcentral_sdk/
279
280
[ license-svg ] : https://img.shields.io/badge/license-MIT-blue.svg
280
- [ license-url ] : https://github.com/grokify/ringcentral-sdk-ruby/blob/master/LICENSE.md
281
+ [ license-url ] : https://github.com/grokify/ringcentral-sdk-ruby/blob/master/LICENSE
281
282
[ chat-svg ] : https://img.shields.io/badge/chat-on%20glip-orange.svg
282
283
[ chat-url ] : https://glipped.herokuapp.com/
283
284
[ stackoverflow-svg ] : https://img.shields.io/badge/Stack%20Overflow-ringcentral-orange.svg
0 commit comments