-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcloudimage.gemspec
26 lines (22 loc) · 1.08 KB
/
cloudimage.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
# frozen_string_literal: true
Gem::Specification.new do |s|
s.name = 'cloudimage'
s.version = '0.6.1'
s.authors = ['Jan Klimo']
s.email = ['[email protected]']
s.summary = "Official API wrapper for Cloudimage's API."
s.description = 'Fast and easy image resizing, transformation, and acceleration in the Cloud.'
s.homepage = 'https://github.com/scaleflex/cloudimage-rb'
s.files = `git ls-files -- bin lib`.split("\n") + %w[CHANGELOG.md LICENSE README.md]
s.metadata = {
'bug_tracker_uri' => 'https://github.com/scaleflex/cloudimage-rb/issues',
'changelog_uri' => 'https://github.com/scaleflex/cloudimage-rb/blob/master/CHANGELOG.md',
'source_code_uri' => 'https://github.com/scaleflex/cloudimage-rb',
'documentation_uri' => 'https://docs.cloudimage.io/go/cloudimage-documentation-v7/en/introduction',
}
s.license = 'MIT'
s.required_ruby_version = Gem::Requirement.new('>= 2.4.0')
s.add_runtime_dependency 'addressable', '~> 2.7'
s.add_development_dependency 'github_changelog_generator', '~> 1.15.2'
s.add_development_dependency 'pry', '~> 0.13'
end