ringcentral_sdk 2.1.0 → 2.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +5 -5
- data/lib/ringcentral_sdk.rb +1 -1
- data/lib/ringcentral_sdk/rest/client.rb +1 -1
- data/lib/ringcentral_sdk/rest/configuration.rb +7 -0
- data/lib/ringcentral_sdk/rest/request.rb +1 -1
- data/lib/ringcentral_sdk/rest/request/fax.rb +2 -2
- data/lib/ringcentral_sdk/rest/request/inflator/contact_info.rb +3 -1
- data/lib/ringcentral_sdk/rest/request/{base_multipart.rb → multipart.rb} +24 -4
- data/lib/ringcentral_sdk/rest/request/sms.rb +2 -2
- data/mkdocs.yml +34 -0
- data/ringcentral_sdk.gemspec +43 -0
- metadata +7 -6
- data/Gemfile.lock +0 -147
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a8693224c967421fbc2541c642d87fa9a9048418
|
4
|
+
data.tar.gz: 4ce478508093b27f3a9d9c0fa9d2c69eae31c487
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f96cb58e1ad977bf2b9dd82032032128f3233ddc39b70294ade2769d946b2a753569060005d7295476a4211957bd69b6e037917c5250aaf99988a63a5f753f9e
|
7
|
+
data.tar.gz: 6b0de930aa9ed09355a1bb00a66b825d12e3546c08acb247cc127c6bf8f4309b02480798c2792a2ce4507e8bb676f878782fa87e4c156a534c25aa3a1aef2f1b
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
1
|
CHANGELOG
|
2
2
|
---------
|
3
|
+
- **2017-06-20**: 2.2.1
|
4
|
+
- Bugfixes
|
5
|
+
- Fix `client.authorize_url`
|
6
|
+
- Fix OAuth2 Sintra demo
|
7
|
+
- **2017-06-05**: 2.2.0
|
8
|
+
- Additions
|
9
|
+
- Generic Multipart helper
|
3
10
|
- **2017-04-01**: 2.1.0
|
4
11
|
- Additions
|
5
12
|
- Add SMS/MMS helper and demo
|
data/README.md
CHANGED
@@ -257,20 +257,20 @@ RingCentral SDK © 2015-2017 by John Wang
|
|
257
257
|
[gem-version-link]: http://badge.fury.io/rb/ringcentral_sdk
|
258
258
|
[downloads-svg]: http://ruby-gem-downloads-badge.herokuapp.com/ringcentral_sdk
|
259
259
|
[downloads-link]: https://rubygems.org/gems/ringcentral_sdk
|
260
|
-
[build-status-svg]: https://api.travis-ci.org/
|
261
|
-
[build-status-link]: https://travis-ci.org/
|
260
|
+
[build-status-svg]: https://api.travis-ci.org/grokify/ringcentral-sdk-ruby.svg?branch=master
|
261
|
+
[build-status-link]: https://travis-ci.org/grokify/ringcentral-sdk-ruby
|
262
262
|
[coverage-status-svg]: https://coveralls.io/repos/grokify/ringcentral-sdk-ruby/badge.svg?branch=master
|
263
263
|
[coverage-status-link]: https://coveralls.io/r/grokify/ringcentral-sdk-ruby?branch=master
|
264
264
|
[dependency-status-svg]: https://gemnasium.com/grokify/ringcentral-sdk-ruby.svg
|
265
265
|
[dependency-status-link]: https://gemnasium.com/grokify/ringcentral-sdk-ruby
|
266
266
|
[codacy-svg]: https://api.codacy.com/project/badge/Grade/4792fe45b56b4841a7e6099c316ac0f8
|
267
|
-
[codacy-link]: https://www.codacy.com/app/
|
267
|
+
[codacy-link]: https://www.codacy.com/app/grokify/ringcentral-sdk-ruby
|
268
268
|
[codeclimate-status-svg]: https://codeclimate.com/github/grokify/ringcentral-sdk-ruby/badges/gpa.svg
|
269
269
|
[codeclimate-status-link]: https://codeclimate.com/github/grokify/ringcentral-sdk-ruby
|
270
270
|
[scrutinizer-status-svg]: https://scrutinizer-ci.com/g/grokify/ringcentral-sdk-ruby/badges/quality-score.png?b=master
|
271
271
|
[scrutinizer-status-link]: https://scrutinizer-ci.com/g/grokify/ringcentral-sdk-ruby/?branch=master
|
272
|
-
[story-status-svg]: https://badge.waffle.io/
|
273
|
-
[story-status-link]: https://waffle.io/
|
272
|
+
[story-status-svg]: https://badge.waffle.io/grokify/ringcentral-sdk-ruby.svg?label=ready&title=Ready
|
273
|
+
[story-status-link]: https://waffle.io/grokify/ringcentral-sdk-ruby
|
274
274
|
[docs-readthedocs-svg]: https://img.shields.io/badge/docs-readthedocs-blue.svg
|
275
275
|
[docs-readthedocs-link]: http://ringcentral-sdk-ruby.readthedocs.org/
|
276
276
|
[docs-rubydoc-svg]: https://img.shields.io/badge/docs-rubydoc-blue.svg
|
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.1
|
3
|
+
VERSION = '2.2.1'.freeze
|
4
4
|
|
5
5
|
RC_SERVER_PRODUCTION = 'https://platform.ringcentral.com'.freeze
|
6
6
|
RC_SERVER_SANDBOX = 'https://platform.devtest.ringcentral.com'.freeze
|
@@ -1,6 +1,9 @@
|
|
1
1
|
require 'dotenv'
|
2
|
+
require 'fiddle'
|
2
3
|
require 'logger'
|
3
4
|
require 'multi_json'
|
5
|
+
require 'ringcentral_sdk'
|
6
|
+
require 'uri'
|
4
7
|
|
5
8
|
module RingCentralSdk
|
6
9
|
module REST
|
@@ -96,6 +99,10 @@ module RingCentralSdk
|
|
96
99
|
@token = MultiJson.decode @token
|
97
100
|
end
|
98
101
|
end
|
102
|
+
|
103
|
+
def authorize_url
|
104
|
+
URI.join(@server_url, RingCentralSdk::REST::Client::AUTHZ_ENDPOINT)
|
105
|
+
end
|
99
106
|
end
|
100
107
|
end
|
101
108
|
end
|
@@ -3,7 +3,7 @@ module RingCentralSdk
|
|
3
3
|
# Request is the module namespace for various API request helpers.
|
4
4
|
module Request
|
5
5
|
autoload :Base, 'ringcentral_sdk/rest/request/base'
|
6
|
-
autoload :
|
6
|
+
autoload :Multipart, 'ringcentral_sdk/rest/request/multipart'
|
7
7
|
autoload :Fax, 'ringcentral_sdk/rest/request/fax'
|
8
8
|
autoload :Inflator, 'ringcentral_sdk/rest/request/inflator'
|
9
9
|
autoload :Simple, 'ringcentral_sdk/rest/request/simple'
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module RingCentralSdk
|
2
2
|
module REST
|
3
3
|
module Request
|
4
|
-
class Fax < RingCentralSdk::REST::Request::
|
5
|
-
def add_metadata
|
4
|
+
class Fax < RingCentralSdk::REST::Request::Multipart
|
5
|
+
def add_metadata(data, opts = {})
|
6
6
|
if data.is_a? Hash
|
7
7
|
inf = RingCentralSdk::REST::Request::Inflator::ContactInfo.new
|
8
8
|
if data.key? :to
|
@@ -7,7 +7,9 @@ module RingCentralSdk
|
|
7
7
|
def inflate_to_array(any = nil)
|
8
8
|
contacts = []
|
9
9
|
if any.is_a?(Array)
|
10
|
-
|
10
|
+
any.each do |contact|
|
11
|
+
contacts.push inflate_to_object(contact)
|
12
|
+
end
|
11
13
|
elsif any.is_a?(Hash)
|
12
14
|
contacts = [any]
|
13
15
|
elsif any.is_a?(String) || any.is_a?(Integer)
|
@@ -7,8 +7,8 @@ require 'multi_json'
|
|
7
7
|
module RingCentralSdk
|
8
8
|
module REST
|
9
9
|
module Request
|
10
|
-
#
|
11
|
-
class
|
10
|
+
# Multipart is a base request helper class for multipart/mixed messages
|
11
|
+
class Multipart < RingCentralSdk::REST::Request::Base
|
12
12
|
CONTENT_ID_HEADER = 'Content-Id'.freeze
|
13
13
|
DEFAULT_METHOD = 'post'.freeze
|
14
14
|
DEFAULT_ID = '~'.freeze
|
@@ -27,6 +27,7 @@ module RingCentralSdk
|
|
27
27
|
@mime.headers.delete CONTENT_ID_HEADER
|
28
28
|
|
29
29
|
@method = opts[:method] ||= DEFAULT_METHOD
|
30
|
+
set_url(opts[:url]) if opts.key? :url
|
30
31
|
|
31
32
|
@mime_part_params = {
|
32
33
|
base64_encode: opts[:base64_encode] ||= DEFAULT_BASE64_ENCODE,
|
@@ -41,7 +42,7 @@ module RingCentralSdk
|
|
41
42
|
@extension_id = opts[:extension_id] ||= opts[:extensionId] ||= DEFAULT_ID
|
42
43
|
end
|
43
44
|
|
44
|
-
def
|
45
|
+
def add_json(data, opts = {})
|
45
46
|
if data.is_a? MIME::Media
|
46
47
|
@mime.add data
|
47
48
|
else
|
@@ -50,6 +51,12 @@ module RingCentralSdk
|
|
50
51
|
@mime_part_params.merge(opts)
|
51
52
|
).mime
|
52
53
|
end
|
54
|
+
self
|
55
|
+
end
|
56
|
+
|
57
|
+
def add_metadata(data, opts = {})
|
58
|
+
add_json(data, opts)
|
59
|
+
self
|
53
60
|
end
|
54
61
|
|
55
62
|
def add_text(text = nil, opts = {})
|
@@ -58,6 +65,7 @@ module RingCentralSdk
|
|
58
65
|
text,
|
59
66
|
@mime_part_params.merge(opts)
|
60
67
|
).mime
|
68
|
+
self
|
61
69
|
end
|
62
70
|
|
63
71
|
def add_file(file_path_or_part, opts = {})
|
@@ -69,16 +77,28 @@ module RingCentralSdk
|
|
69
77
|
@mime_part_params.merge(opts).merge({is_attachment: true})
|
70
78
|
).mime
|
71
79
|
end
|
80
|
+
self
|
72
81
|
end
|
73
82
|
|
74
83
|
def add_files(files = [], opts = {})
|
75
84
|
files.each do |f|
|
76
85
|
add_file f, opts
|
77
86
|
end
|
87
|
+
self
|
88
|
+
end
|
89
|
+
|
90
|
+
def add_part(part)
|
91
|
+
@mime.add part
|
92
|
+
self
|
78
93
|
end
|
79
94
|
|
80
95
|
def url
|
81
|
-
|
96
|
+
@_url
|
97
|
+
end
|
98
|
+
|
99
|
+
def set_url(url)
|
100
|
+
@_url = url
|
101
|
+
self
|
82
102
|
end
|
83
103
|
|
84
104
|
def content_type
|
@@ -1,8 +1,8 @@
|
|
1
1
|
module RingCentralSdk
|
2
2
|
module REST
|
3
3
|
module Request
|
4
|
-
class SMS < RingCentralSdk::REST::Request::
|
5
|
-
def add_metadata
|
4
|
+
class SMS < RingCentralSdk::REST::Request::Multipart
|
5
|
+
def add_metadata(data, opts = {})
|
6
6
|
if data.is_a? Hash
|
7
7
|
inf = RingCentralSdk::REST::Request::Inflator::ContactInfo.new
|
8
8
|
if data.key? :to
|
data/mkdocs.yml
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
site_name: RingCentral SDK for Ruby
|
2
|
+
site_url: https://github.com/grokify/ringcentral-sdk-ruby
|
3
|
+
repo_url: https://github.com/grokify/ringcentral-sdk-ruby.git
|
4
|
+
docs_dir: docs
|
5
|
+
theme: readthedocs
|
6
|
+
pages:
|
7
|
+
# Introduction:
|
8
|
+
- ['index.md', 'About', 'RingCentral SDK']
|
9
|
+
- ['quickstart.md', 'About', 'Quickstart']
|
10
|
+
|
11
|
+
## Getting Started:
|
12
|
+
- ['configuration.md', 'Getting Started', 'Configuration']
|
13
|
+
- ['usage/authorization/Authorization.md', 'Getting Started', 'Authorization']
|
14
|
+
- ['usage/http-client.md', 'Getting Started', 'HTTP Requests']
|
15
|
+
|
16
|
+
## Messaging:
|
17
|
+
- ['usage/messages/SMS-Messages.md', 'Messaging', 'SMS Messages']
|
18
|
+
- ['usage/messages/Fax-Messages.md', 'Messaging', 'Fax Messages']
|
19
|
+
|
20
|
+
## Voice:
|
21
|
+
- ['usage/voice/Click-To-Call.md', 'Voice', 'Click-To-Call']
|
22
|
+
- ['usage/messages/Call-Recordings.md', 'Voice', 'Call Recordings']
|
23
|
+
|
24
|
+
## Answering Rules:
|
25
|
+
- ['usage/answering-rules/Answering-Rules-Call-Forwarding.md', 'Answering Rules', 'Call Forwarding']
|
26
|
+
|
27
|
+
## Call Queues:
|
28
|
+
- ['usage/callqueues/Adding-Removing-Users.md', 'Call Queues', 'Adding and Removing Users']
|
29
|
+
- ['usage/callqueues/Member-Status.md', 'Call Queues', 'Member Status']
|
30
|
+
|
31
|
+
## Notifications:
|
32
|
+
- ['usage/notifications/Subscriptions.md', 'Notifications', 'Subscriptions']
|
33
|
+
- ['usage/notifications/Subscribe_to_All_Extensions.md', 'Notifications', 'Subscribe to All Extensions']
|
34
|
+
- ['usage/notifications/Subscribe_for_New_SMS.md', 'Notifications', 'Subscribe for New SMS']
|
@@ -0,0 +1,43 @@
|
|
1
|
+
lib = 'ringcentral_sdk'
|
2
|
+
lib_file = File.expand_path("../lib/#{lib}.rb", __FILE__)
|
3
|
+
File.read(lib_file) =~ /\bVERSION\s*=\s*["'](.+?)["']/
|
4
|
+
version = $1
|
5
|
+
#require File.expand_path('../lib/ringcentral_sdk/version', __FILE__)
|
6
|
+
|
7
|
+
Gem::Specification.new do |s|
|
8
|
+
s.name = lib
|
9
|
+
s.version = version
|
10
|
+
s.date = '2017-06-20'
|
11
|
+
s.summary = 'RingCentral SDK - Ruby SDK for the RingCentral Connect Platform API'
|
12
|
+
s.description = 'A Ruby SDK for the RingCentral Connect Platform API'
|
13
|
+
s.authors = ['John Wang']
|
14
|
+
s.email = 'johncwang@gmail.com'
|
15
|
+
s.homepage = 'https://github.com/grokify/ringcentral-sdk-ruby'
|
16
|
+
s.licenses = ['MIT']
|
17
|
+
s.files = Dir['lib/**/**/*']
|
18
|
+
s.files += Dir['[A-Z]*'] + Dir['test/**/*']
|
19
|
+
# s.files.reject! { |fn| fn.include? "CVS" }
|
20
|
+
|
21
|
+
s.required_ruby_version = '>= 2.2.2'
|
22
|
+
|
23
|
+
s.add_dependency 'dotenv', '~> 2.1', '>= 2.1.0'
|
24
|
+
s.add_dependency 'faraday', '~> 0', '>= 0'
|
25
|
+
s.add_dependency 'faraday_middleware', '~> 0', '>= 0'
|
26
|
+
s.add_dependency 'faraday_middleware-oauth2_refresh', '~> 0'
|
27
|
+
s.add_dependency 'faraday_middleware-request-retry', '~> 0.1', '>= 0.1.0'
|
28
|
+
s.add_dependency 'jsondoc', '~> 0.1', '>= 0.1.0'
|
29
|
+
s.add_dependency 'logger', '~> 1'
|
30
|
+
s.add_dependency 'mime', '~> 0.4', '>= 0.4.3'
|
31
|
+
s.add_dependency 'mime-types', '~> 3.1' # >= 1.9 '~> 2.5', '>= 2.5'
|
32
|
+
s.add_dependency 'mime_builder', '~> 0', '>= 0.0.4'
|
33
|
+
s.add_dependency 'multi_json', '~> 1.3'
|
34
|
+
s.add_dependency 'oauth2', '~> 1.0', '>= 1.0.0'
|
35
|
+
s.add_dependency 'pubnub', '~> 4.0'
|
36
|
+
|
37
|
+
s.add_development_dependency 'bundler', '~> 1'
|
38
|
+
s.add_development_dependency 'coveralls', '~> 0'
|
39
|
+
s.add_development_dependency 'mocha', '~> 1'
|
40
|
+
s.add_development_dependency 'rake', '~> 12'
|
41
|
+
s.add_development_dependency 'simplecov', '~> 0'
|
42
|
+
s.add_development_dependency 'test-unit', '~> 3'
|
43
|
+
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ringcentral_sdk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.1
|
4
|
+
version: 2.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Wang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: dotenv
|
@@ -332,7 +332,6 @@ extra_rdoc_files: []
|
|
332
332
|
files:
|
333
333
|
- CHANGELOG.md
|
334
334
|
- Gemfile
|
335
|
-
- Gemfile.lock
|
336
335
|
- LICENSE.md
|
337
336
|
- README.md
|
338
337
|
- Rakefile
|
@@ -349,14 +348,16 @@ files:
|
|
349
348
|
- lib/ringcentral_sdk/rest/messages_retriever.rb
|
350
349
|
- lib/ringcentral_sdk/rest/request.rb
|
351
350
|
- lib/ringcentral_sdk/rest/request/base.rb
|
352
|
-
- lib/ringcentral_sdk/rest/request/base_multipart.rb
|
353
351
|
- lib/ringcentral_sdk/rest/request/fax.rb
|
354
352
|
- lib/ringcentral_sdk/rest/request/inflator.rb
|
355
353
|
- lib/ringcentral_sdk/rest/request/inflator/contact_info.rb
|
354
|
+
- lib/ringcentral_sdk/rest/request/multipart.rb
|
356
355
|
- lib/ringcentral_sdk/rest/request/simple.rb
|
357
356
|
- lib/ringcentral_sdk/rest/request/sms.rb
|
358
357
|
- lib/ringcentral_sdk/rest/simple_client.rb
|
359
358
|
- lib/ringcentral_sdk/rest/subscription.rb
|
359
|
+
- mkdocs.yml
|
360
|
+
- ringcentral_sdk.gemspec
|
360
361
|
- test/test_base.rb
|
361
362
|
- test/test_client.rb
|
362
363
|
- test/test_event.rb
|
@@ -366,7 +367,7 @@ files:
|
|
366
367
|
- test/test_helper_request.rb
|
367
368
|
- test/test_setup.rb
|
368
369
|
- test/test_subscription.rb
|
369
|
-
homepage: https://github.com/grokify/
|
370
|
+
homepage: https://github.com/grokify/ringcentral-sdk-ruby
|
370
371
|
licenses:
|
371
372
|
- MIT
|
372
373
|
metadata: {}
|
@@ -386,7 +387,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
386
387
|
version: '0'
|
387
388
|
requirements: []
|
388
389
|
rubyforge_project:
|
389
|
-
rubygems_version: 2.
|
390
|
+
rubygems_version: 2.4.8
|
390
391
|
signing_key:
|
391
392
|
specification_version: 4
|
392
393
|
summary: RingCentral SDK - Ruby SDK for the RingCentral Connect Platform API
|
data/Gemfile.lock
DELETED
@@ -1,147 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
ringcentral_sdk (2.1.0)
|
5
|
-
dotenv (~> 2.1, >= 2.1.0)
|
6
|
-
faraday (~> 0, >= 0)
|
7
|
-
faraday_middleware (~> 0, >= 0)
|
8
|
-
faraday_middleware-oauth2_refresh (~> 0)
|
9
|
-
faraday_middleware-request-retry (~> 0.1, >= 0.1.0)
|
10
|
-
jsondoc (~> 0.1, >= 0.1.0)
|
11
|
-
logger (~> 1)
|
12
|
-
mime (~> 0.4, >= 0.4.3)
|
13
|
-
mime-types (~> 3.1)
|
14
|
-
mime_builder (~> 0, >= 0.0.4)
|
15
|
-
multi_json (~> 1.3)
|
16
|
-
oauth2 (~> 1.0, >= 1.0.0)
|
17
|
-
pubnub (~> 4.0)
|
18
|
-
|
19
|
-
GEM
|
20
|
-
remote: https://rubygems.org/
|
21
|
-
specs:
|
22
|
-
celluloid (0.17.3)
|
23
|
-
celluloid-essentials
|
24
|
-
celluloid-extras
|
25
|
-
celluloid-fsm
|
26
|
-
celluloid-pool
|
27
|
-
celluloid-supervision
|
28
|
-
timers (>= 4.1.1)
|
29
|
-
celluloid-essentials (0.20.5)
|
30
|
-
timers (>= 4.1.1)
|
31
|
-
celluloid-extras (0.20.5)
|
32
|
-
timers (>= 4.1.1)
|
33
|
-
celluloid-fsm (0.20.5)
|
34
|
-
timers (>= 4.1.1)
|
35
|
-
celluloid-pool (0.20.5)
|
36
|
-
timers (>= 4.1.1)
|
37
|
-
celluloid-supervision (0.20.6)
|
38
|
-
timers (>= 4.1.1)
|
39
|
-
concurrent-ruby (1.0.5)
|
40
|
-
coveralls (0.8.20)
|
41
|
-
json (>= 1.8, < 3)
|
42
|
-
simplecov (~> 0.14.1)
|
43
|
-
term-ansicolor (~> 1.3)
|
44
|
-
thor (~> 0.19.4)
|
45
|
-
tins (~> 1.6)
|
46
|
-
docile (1.1.5)
|
47
|
-
dotenv (2.2.0)
|
48
|
-
dry-configurable (0.6.2)
|
49
|
-
concurrent-ruby (~> 1.0)
|
50
|
-
dry-container (0.6.0)
|
51
|
-
concurrent-ruby (~> 1.0)
|
52
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
53
|
-
dry-core (0.2.4)
|
54
|
-
concurrent-ruby (~> 1.0)
|
55
|
-
dry-equalizer (0.2.0)
|
56
|
-
dry-logic (0.4.1)
|
57
|
-
dry-container (~> 0.2, >= 0.2.6)
|
58
|
-
dry-core (~> 0.2)
|
59
|
-
dry-equalizer (~> 0.2)
|
60
|
-
dry-types (0.9.4)
|
61
|
-
concurrent-ruby (~> 1.0)
|
62
|
-
dry-configurable (~> 0.1)
|
63
|
-
dry-container (~> 0.3)
|
64
|
-
dry-core (~> 0.2, >= 0.2.1)
|
65
|
-
dry-equalizer (~> 0.2)
|
66
|
-
dry-logic (~> 0.4, >= 0.4.0)
|
67
|
-
inflecto (~> 0.0.0, >= 0.0.2)
|
68
|
-
dry-validation (0.10.5)
|
69
|
-
concurrent-ruby (~> 1.0)
|
70
|
-
dry-configurable (~> 0.1, >= 0.1.3)
|
71
|
-
dry-core (~> 0.2, >= 0.2.1)
|
72
|
-
dry-equalizer (~> 0.2)
|
73
|
-
dry-logic (~> 0.4, >= 0.4.0)
|
74
|
-
dry-types (~> 0.9, >= 0.9.0)
|
75
|
-
faraday (0.11.0)
|
76
|
-
multipart-post (>= 1.2, < 3)
|
77
|
-
faraday_middleware (0.11.0.1)
|
78
|
-
faraday (>= 0.7.4, < 1.0)
|
79
|
-
faraday_middleware-oauth2_refresh (0.0.3)
|
80
|
-
faraday (~> 0.9, >= 0.9)
|
81
|
-
faraday_middleware (~> 0, >= 0)
|
82
|
-
faraday_middleware-request-retry (0.2.0)
|
83
|
-
faraday (~> 0, >= 0)
|
84
|
-
faraday_middleware (~> 0, >= 0)
|
85
|
-
hitimes (1.2.4)
|
86
|
-
httpclient (2.8.3)
|
87
|
-
inflecto (0.0.2)
|
88
|
-
json (2.0.3)
|
89
|
-
jsondoc (0.1.3)
|
90
|
-
jwt (1.5.6)
|
91
|
-
logger (1.2.8)
|
92
|
-
metaclass (0.0.4)
|
93
|
-
mime (0.4.3)
|
94
|
-
mime-types (3.1)
|
95
|
-
mime-types-data (~> 3.2015)
|
96
|
-
mime-types-data (3.2016.0521)
|
97
|
-
mime_builder (0.0.4)
|
98
|
-
mime (~> 0.4, >= 0.4.3)
|
99
|
-
mime-types (~> 3.1)
|
100
|
-
multi_json (~> 1, >= 1.12.1)
|
101
|
-
mocha (1.2.1)
|
102
|
-
metaclass (~> 0.0.1)
|
103
|
-
multi_json (1.12.1)
|
104
|
-
multi_xml (0.6.0)
|
105
|
-
multipart-post (2.0.0)
|
106
|
-
oauth2 (1.3.1)
|
107
|
-
faraday (>= 0.8, < 0.12)
|
108
|
-
jwt (~> 1.0)
|
109
|
-
multi_json (~> 1.3)
|
110
|
-
multi_xml (~> 0.5)
|
111
|
-
rack (>= 1.2, < 3)
|
112
|
-
power_assert (1.0.1)
|
113
|
-
pubnub (4.0.19)
|
114
|
-
celluloid (~> 0.17)
|
115
|
-
dry-validation (~> 0.10)
|
116
|
-
httpclient (~> 2.8)
|
117
|
-
json (>= 1.8, < 3)
|
118
|
-
rack (2.0.1)
|
119
|
-
rake (12.0.0)
|
120
|
-
simplecov (0.14.1)
|
121
|
-
docile (~> 1.1.0)
|
122
|
-
json (>= 1.8, < 3)
|
123
|
-
simplecov-html (~> 0.10.0)
|
124
|
-
simplecov-html (0.10.0)
|
125
|
-
term-ansicolor (1.5.0)
|
126
|
-
tins (~> 1.0)
|
127
|
-
test-unit (3.2.3)
|
128
|
-
power_assert
|
129
|
-
thor (0.19.4)
|
130
|
-
timers (4.1.2)
|
131
|
-
hitimes
|
132
|
-
tins (1.13.2)
|
133
|
-
|
134
|
-
PLATFORMS
|
135
|
-
ruby
|
136
|
-
|
137
|
-
DEPENDENCIES
|
138
|
-
bundler (~> 1)
|
139
|
-
coveralls (~> 0)
|
140
|
-
mocha (~> 1)
|
141
|
-
rake (~> 12)
|
142
|
-
ringcentral_sdk!
|
143
|
-
simplecov (~> 0)
|
144
|
-
test-unit (~> 3)
|
145
|
-
|
146
|
-
BUNDLED WITH
|
147
|
-
1.13.7
|