Sha256: c75d498c1a8aae745f945b8e278162a9aa666f5bba99418512950adeb6d4d603
Contents?: true
Size: 1.26 KB
Versions: 1
Compression:
Stored size: 1.26 KB
Contents
# 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 = ["kelly@imgix.com", "sam@soff.es", "ryan@layervault.com", "email@antonydenyer.co.uk", "paul@imgix.com", "sherwin@imgix.com"] 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
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
imgix-4.1.0 | imgix.gemspec |