forked from grokify/ringcentral-sdk-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ringcentral_sdk.gemspec
36 lines (36 loc) · 1.37 KB
/
ringcentral_sdk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Gem::Specification.new do |s|
s.name = 'ringcentral_sdk'
s.version = '0.1.2'
s.date = '2015-05-31'
s.summary = 'RingCentral SDK - Unofficial Ruby SDK for the RingCentral Connect Platform API'
s.description = 'An unofficial Ruby SDK for the RingCentral Connect Platform API'
s.authors = ['John Wang']
s.email = '[email protected]'
s.homepage = 'https://github.com/grokify/'
s.files = [
'CHANGELOG.md',
'LICENSE.txt',
'README.md',
'Rakefile',
'VERSION.txt',
'lib/ringcentral_sdk.rb',
'lib/ringcentral_sdk/helpers.rb',
'lib/ringcentral_sdk/helpers/fax.rb',
'lib/ringcentral_sdk/helpers/inflator.rb',
'lib/ringcentral_sdk/helpers/inflator/contact_info.rb',
'lib/ringcentral_sdk/helpers/request.rb',
'lib/ringcentral_sdk/platform.rb',
'lib/ringcentral_sdk/platform/platform.rb',
'lib/ringcentral_sdk/sdk.rb',
'test/test_setup.rb'
]
# s.required_ruby_version = '>= 1.8.7' # 1.8.7+ is tested
s.add_dependency 'faraday', '~> 0.9', '>= 0.9'
s.add_dependency 'faraday_middleware', '~> 0', '>= 0'
s.add_dependency 'faraday_middleware-oauth2_refresh', '>= 0'
s.add_dependency 'mime', '>= 0'
s.add_dependency 'mime-types', '>= 1.25' # >= 1.9 '~> 2.5', '>= 2.5'
s.add_dependency 'multi_json', '>= 0'
s.add_dependency 'oauth2', '>= 0'
s.add_dependency 'test-unit', '>= 0'
end