Sha256: e4d80c4dbf791b98d96776e247baaaeab11f91d5602c9f67d4b781aa395fe96c

Contents?: true

Size: 1.28 KB

Versions: 6

Compression:

Stored size: 1.28 KB

Contents

lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "imagetools/version"

Gem::Specification.new do |spec|
  spec.name          = "imagetools"
  spec.version       = Imagetools::VERSION
  spec.authors       = ["src"]
  spec.email         = ["src@srcw.net"]

  spec.summary       = %q{Image Tools.}
  spec.description   = %q{Image Tools.}
  spec.homepage      = ""
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
#  if spec.respond_to?(:metadata)
#    spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
#  else
#    raise "RubyGems 2.0 or newer is required to protect against " \
#      "public gem pushes."
#  end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.add_dependency "rmagick"
  spec.add_development_dependency "bundler", "~> 2.0"
  spec.add_development_dependency "rake", "~> 13.0"
  spec.add_development_dependency "minitest", "~> 5.0"
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
imagetools-1.8.0 imagetools.gemspec
imagetools-1.7.0 imagetools.gemspec
imagetools-1.6.1 imagetools.gemspec
imagetools-1.6.0 imagetools.gemspec
imagetools-1.5.2 imagetools.gemspec
imagetools-1.5.1 imagetools.gemspec