Sha256: 6c1d3c8979dab64472895d2955d0531457e996ce9c3d91613d2412b716c2ec00

Contents?: true

Size: 1.33 KB

Versions: 9

Compression:

Stored size: 1.33 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
  gem.name = "rtesseract"
  gem.homepage = "http://github.com/dannnylo/rtesseract"
  gem.license = "MIT"
  gem.summary = %Q{Ruby library for working with the Tesseract OCR.}
  gem.description = %Q{Ruby library for working with the Tesseract OCR.}
  gem.email = "dannnylo@gmail.com"
  gem.authors = ["Danilo Jeremias da Silva"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

desc "Code coverage detail"
task :simplecov do
  ENV['COVERAGE'] = "true"
  Rake::Task['spec'].execute
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "rtesseract #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
rtesseract-1.3.0 Rakefile
rtesseract-1.2.6 Rakefile
rtesseract-1.2.5 Rakefile
rtesseract-1.2.4 Rakefile
rtesseract-1.2.3 Rakefile
rtesseract-1.2.2 Rakefile
rtesseract-1.2.1 Rakefile
rtesseract-1.2.0 Rakefile
rtesseract-1.1.0 Rakefile