-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgroupdocs_viewer_cloud.gemspec
More file actions
23 lines (19 loc) · 913 Bytes
/
groupdocs_viewer_cloud.gemspec
File metadata and controls
23 lines (19 loc) · 913 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require './lib/groupdocs_viewer_cloud/version'
Gem::Specification.new do |s|
s.name = 'groupdocs_viewer_cloud'
s.version = GroupDocsViewerCloud::VERSION
s.platform = Gem::Platform::RUBY
s.license = 'MIT'
s.summary = 'GroupDocs.Viewer Cloud Ruby SDK'
s.description = 'Ruby gem for communicating with the GroupDocs.Viewer Cloud API'
s.author = 'GroupDocs'
s.email = 'support@groupdocs.cloud'
s.homepage = 'https://products.groupdocs.cloud/viewer/ruby'
s.metadata = { 'source_code_uri' => 'https://github.com/groupdocs-viewer-cloud/groupdocs-viewer-cloud-ruby' }
s.add_runtime_dependency 'faraday', '~> 1.0'
s.add_runtime_dependency 'addressable', '~> 2.8.0', '>= 2.8.0'
s.add_development_dependency 'minitest', '~> 5.11', '>= 5.11.3'
s.files = Dir['lib/**/*.rb']
s.require_paths = ['lib']
s.required_ruby_version = '~> 2.7.4'
end