-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathimgix.gemspec
30 lines (25 loc) · 1.34 KB
/
imgix.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
# frozen_string_literal: true
require_relative 'lib/imgix/version'
Gem::Specification.new do |spec|
spec.name = 'imgix'
spec.version = Imgix::VERSION
spec.authors = ['Kelly Sutton', 'Sam Soffes', 'Ryan LeFevre', 'Antony Denyer', 'Paul Straw', 'Sherwin Heydarbeygi']
spec.email = ['[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]', '[email protected]']
spec.description = 'Easily create and sign imgix URLs.'
spec.summary = 'Official Ruby Gem for easily creating and signing imgix URLs.'
spec.homepage = 'https://github.com/imgix/imgix-rb'
spec.license = 'MIT'
spec.metadata = {
'bug_tracker_uri' => 'https://github.com/imgix/imgix-rb/issues',
'changelog_uri' => 'https://github.com/imgix/imgix-rb/blob/main/CHANGELOG.md',
'documentation_uri' => "https://www.rubydoc.info/gems/imgix/#{spec.version}",
'source_code_uri' => "https://github.com/imgix/imgix-rb/tree/#{spec.version}"
}
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.required_ruby_version = '>= 1.9.0'
spec.add_dependency 'addressable'
spec.add_development_dependency 'webmock'
end