forked from teachbase/imatcher
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathimatcher.gemspec
More file actions
22 lines (18 loc) · 769 Bytes
/
imatcher.gemspec
File metadata and controls
22 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$:.push File.expand_path("../lib", __FILE__)
require 'imatcher/version'
Gem::Specification.new do |spec|
spec.name = "imatcher"
spec.version = Imatcher::VERSION
spec.authors = ["palkan"]
spec.email = ["dementiev.vm@gmail.com"]
spec.summary = "Image comparison lib"
spec.description = "Image comparison lib built on top of ChunkyPNG"
spec.homepage = "http://github.com/teachbase/imatcher"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.require_paths = ["lib"]
spec.add_dependency "chunky_png", "~> 1.3.5"
spec.add_development_dependency "simplecov", ">= 0.3.8"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_development_dependency "rspec", "~> 3.0"
end