forked from scottdavis/ruby-tesseract
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tesseract.gemspec
25 lines (22 loc) · 992 Bytes
/
tesseract.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "tesseract/version"
Gem::Specification.new do |s|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.name = %q{tesseract}
s.version = Tesseract::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Scott Davis", "Martin Samson"]
s.description = %q{Ruby wrapper for google tesseract}
s.summary = %q{Ruby wrapper for google tesseract}
s.email = %q{[email protected]}
s.date = Date.today.to_s
s.files = ['lib/tesseract.rb', 'lib/tesseract/process.rb', 'lib/tesseract/file_handler.rb', 'lib/tesseract/dependency_checker.rb']
s.files += ['lib/tesseract/version.rb']
s.require_path = 'lib'
s.homepage = %q{http://github.com/scottdavis/ruby-tesseract}
s.rdoc_options = ["--charset=UTF-8"]
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "bundler", ">= 1.0.0"
s.required_ruby_version = '>= 1.8.6'
end