-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathringcentral-sdk.gemspec
21 lines (19 loc) · 1.18 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
Gem::Specification.new do |gem|
gem.name = 'ringcentral-sdk'
gem.version = '1.1.3'
gem.authors = ['Tyler Liu']
gem.email = ['tyler.liu@ringcentral.com']
gem.description = 'This is the **official** RingCentral SDK for the Ruby programming language. While there are other Ruby SDKs for RingCentral, those are maintained by the community. We\'re including this clarification to help avoid confusion, as some SDKs have similar names. That said, we truly appreciate and welcome community contributions and alternative SDKs.'
gem.summary = 'The **official** RingCentral Ruby SDK.'
gem.homepage = 'https://github.com/ringcentral/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.7')
gem.add_dependency('concurrent-ruby', '~> 1.3', '>= 1.3.5')
gem.add_dependency('faraday', '~> 2.13', '>= 2.13.0')
gem.add_dependency('faraday-multipart', '~> 1.1', '>= 1.1.0')
gem.add_dependency('faye-websocket', '~> 0.11', '>= 0.11.3')
end