-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathimagecore.gemspec
More file actions
20 lines (17 loc) · 887 Bytes
/
imagecore.gemspec
File metadata and controls
20 lines (17 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/imagecore/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["oleg dashevskii"]
gem.email = ["olegdashevskii@gmail.com"]
gem.description = %q{Determine the core of an image file, stripping any borders}
gem.summary = %q{Get image file core}
gem.homepage = "https://github.com/be9/imagecore"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "imagecore"
gem.require_paths = ["lib"]
gem.version = ImageCore::VERSION
gem.extensions = %w(ext/opencv/core/extconf.rb ext/opencv/imgproc/extconf.rb
ext/opencv/highgui/extconf.rb ext/imagecore/extconf.rb)
end