Sha256: 32ce4d6a98bac6f3de45469a700580bc5310e9a7fbb12e54c68ce0ef914e4387
Contents?: true
Size: 1.48 KB
Versions: 3
Compression:
Stored size: 1.48 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'vips/version' Gem::Specification.new do |spec| spec.name = "ruby-vips" spec.version = Vips::VERSION spec.authors = ["John Cupitt"] spec.date = "2016-06-07" spec.email = "jcupitt@gmail.com" spec.summary = "Ruby extension for the vips image processing library." spec.description = "ruby-vips is a binding for the vips image processing library. It is extremely fast and it can process huge images without loading the whole image in memory." spec.homepage = "http://github.com/jcupitt/ruby-vips" spec.licenses = ["MIT"] # gobject-introspection really needs 2.1, but it just about works on 2.0, the # ruby that OS X is still bundling ... only ask for 2.0 to help OS X spec.required_ruby_version = ">= 2.0" spec.rubygems_version = "2.5.1" spec.require_paths = ["lib"] spec.extra_rdoc_files = [ "LICENSE.txt", "README.md", "TODO" ] spec.files = `git ls-files -z`.split("\x0").reject do |f| f.match(%r{^(test|spec|features)/}) end spec.add_runtime_dependency "gobject-introspection", ["~> 3.1"] spec.add_development_dependency "rake", ["~> 11.0"] spec.add_development_dependency "rspec", ["~> 3.3"] spec.add_development_dependency "yard", ["~> 0.8"] spec.add_development_dependency "redcarpet", ["~> 3.3"] spec.add_development_dependency "github-markup", ["~> 1.4"] spec.add_development_dependency "bundler", ["~> 1.0"] end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
ruby-vips-1.0.6 | ruby-vips.gemspec |
ruby-vips-1.0.5 | ruby-vips.gemspec |
ruby-vips-1.0.4 | ruby-vips.gemspec |