-
Notifications
You must be signed in to change notification settings - Fork 27
/
imgix.gemspec
28 lines (23 loc) · 1.26 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
# 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 = Dir.chdir(File.expand_path('..', __FILE__)) do
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features|.github|.vscode|.circleci)/}) }
end
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 1.9.0"
end