Sha256: a274bd93bfdd4d14548dcb1cff169e94d88d4c91c25c80fd20210e0616da62fd

Contents?: true

Size: 1.58 KB

Versions: 8

Compression:

Stored size: 1.58 KB

Contents

# frozen_string_literal: true

require_relative "lib/vips/version"

Gem::Specification.new do |spec|
  spec.name = "ruby-vips"
  spec.version = Vips::VERSION
  spec.summary = "A fast image processing library with low memory needs"
  spec.description = <<-DESC.strip
    ruby-vips is a binding for the libvips image processing library. It is fast 
    and it can process large images without loading the whole image in memory.
  DESC
  spec.homepage = "http://github.com/libvips/ruby-vips"
  spec.licenses = ["MIT"]
  spec.authors = ["John Cupitt"]
  spec.email = ["jcupitt@gmail.com"]

  spec.metadata = {
    "bug_tracker_uri" => "https://github.com/libvips/ruby-vips/issues",
    "changelog_uri" =>
      "https://github.com/libvips/ruby-vips/blob/master/CHANGELOG.md",
    "documentation_uri" => "https://www.rubydoc.info/gems/ruby-vips",
    "homepage_uri" => spec.homepage,
    "source_code_uri" => "https://github.com/libvips/ruby-vips",

    "msys2_mingw_dependencies" => "libvips"
  }

  spec.require_paths = ["lib"]
  spec.extra_rdoc_files = %w[LICENSE.txt README.md TODO]

  spec.files = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end

  spec.required_ruby_version = ">= 2.0.0"

  spec.add_runtime_dependency "ffi", ["~> 1.12"]

  spec.add_development_dependency "rake", ["~> 12.0"]
  spec.add_development_dependency "rspec", ["~> 3.3"]
  spec.add_development_dependency "yard", ["~> 0.9.11"]
  spec.add_development_dependency "bundler", [">= 1.0", "< 3"]

  if Gem.ruby_version >= Gem::Version.new("2.2")
    spec.add_development_dependency "standard"
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/ruby-vips-2.2.1/ruby-vips.gemspec
ruby-vips-2.2.1 ruby-vips.gemspec
ruby-vips-2.2.0 ruby-vips.gemspec
ruby-vips-2.1.4 ruby-vips.gemspec
ruby-vips-2.1.3 ruby-vips.gemspec
ruby-vips-2.1.2 ruby-vips.gemspec
ruby-vips-2.1.1 ruby-vips.gemspec
ruby-vips-2.1.0 ruby-vips.gemspec