Sha256: 31ce495444e530f52308a772b424a6f9b5481a753b04d250c9621ac5b15d66bf

Contents?: true

Size: 1.21 KB

Versions: 2

Compression:

Stored size: 1.21 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://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "wkhtmltopdf-binary-11"
  gem.homepage = "http://github.com/dbatshaw/wkhtmltopdf-binary-11"
  gem.license = "MIT"
  gem.summary = "Provides 0.11rc binaries for WKHTMLTOPDF project in an easily accessible package."
  gem.email = "dev@forthillcompany.com"
  gem.authors = ["Fort Hill Company"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/test_*.rb'
  test.verbose = true
end

task :default => :test

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

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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wkhtmltopdf-binary-11-0.1.0 Rakefile
wkhtmltopdf-binary-11-0.0.0 Rakefile