forked from ringcentral/ringcentral-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathringcentral-sdk.gemspec
More file actions
21 lines (19 loc) · 894 Bytes
/
ringcentral-sdk.gemspec
File metadata and controls
21 lines (19 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |gem|
gem.name = 'test-rc-sdk'
gem.version = '1.0.0'
gem.authors = ['Sushil Mall']
gem.email = ['sushil.mall@ringcentral.com']
gem.description = 'Ruby SDK for you to access RingCentral platform API.'
gem.summary = 'RingCentral Ruby SDK.'
gem.homepage = 'https://github.com/SushilMallRC/ringcentral-ruby'
gem.license = 'MIT'
gem.require_paths = ['lib']
gem.files = %w(README.md ringcentral-sdk.gemspec)
gem.files += Dir['lib/**/*.rb']
gem.test_files = Dir['spec/**/*.rb']
gem.add_dependency('addressable', '~> 2.8', '>= 2.8.6')
gem.add_dependency('concurrent-ruby', '~> 1.2', '>= 1.2.3')
gem.add_dependency('faraday', '~> 2.9', '>= 2.9.0')
gem.add_dependency('faraday-multipart', '~> 1.0', '>= 1.0.4')
gem.add_dependency('faye-websocket', '~> 0.11', '>= 0.11.3')
end