Skip to content

Commit

Permalink
gemfile and spec
Browse files Browse the repository at this point in the history
  • Loading branch information
scottdavis committed Feb 23, 2011
1 parent 3c883b5 commit 924fa38
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
source 'http://rubygems.org'

gemspec
Binary file added tesseract-0.0.1.gem
Binary file not shown.
20 changes: 20 additions & 0 deletions tesseract.gemspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
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 = '0.0.1'
s.platform = Gem::Platform::RUBY

s.authors = ["Scott Davis"]
s.description = %q{Ruby wrapper for google tesseract}
s.summary = %q{Ruby wrapper for google tesseract}
s.email = %q{jetviper21@gmail.com}
s.date = Date.today.to_s
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'tesseract'
s.homepage = %q{http://github.com/jetviper21/ruby-tesseract}
s.rdoc_options = ["--charset=UTF-8"]
s.required_rubygems_version = ">= 1.3.6"
s.add_development_dependency "bundler", ">= 1.0.0"
end

0 comments on commit 924fa38

Please sign in to comment.