-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocarina.gemspec
21 lines (18 loc) · 901 Bytes
/
ocarina.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/ocarina/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["George Armhold"]
gem.email = ["[email protected]"]
gem.description = %q{A Ruby project that uses machine learning to perform Optical Character Recognition}
gem.summary = %q{A Ruby project that uses machine learning to perform Optical Character Recognition}
gem.homepage = "https://github.com/armhold/ocarina"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "ocarina"
gem.require_paths = ["lib"]
gem.version = Ocarina::VERSION
gem.add_runtime_dependency 'rmagick'
gem.add_runtime_dependency 'powerbar'
gem.add_development_dependency 'ruby-prof'
end