Sha256: ea0bdbf0d22088b2649961a0c0062e79f4225b0cf9b4c3d59b4c33bedcf03aba

Contents?: true

Size: 1.24 KB

Versions: 4

Compression:

Stored size: 1.24 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)/}) }
  end

  spec.require_paths = ["lib"]
  spec.required_ruby_version = ">= 1.9.0"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
imgix-4.0.3 imgix.gemspec
imgix-4.0.2 imgix.gemspec
imgix-4.0.1 imgix.gemspec
imgix-4.0.0 imgix.gemspec