Sha256: 2b50702d7b9beb8038f081eda21db9f920e5aa51427f37285d812a30d047e805

Contents?: true

Size: 1.41 KB

Versions: 2

Compression:

Stored size: 1.41 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require '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         = `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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
imgix-3.3.1 imgix.gemspec
imgix-3.3.0 imgix.gemspec