Sha256: 93518856e67ab6970ccb7634a1315d34a51d106d05ae3d7d43e88d39c5404d4d

Contents?: true

Size: 1.27 KB

Versions: 19

Compression:

Stored size: 1.27 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.name = "wisepdf"
  gem.homepage = "http://github.com/igor-alexandrov/wisepdf"
  gem.license = "MIT"
  gem.summary = "wkhtmltopdf for Rails done right"
  gem.description = %Q{wisepdf uses the shell utility wkhtmltopdf to serve a PDF file to a user from HTML. In other words, rather than dealing with a PDF generation DSL of some sort, you simply write an HTML view as you would normally, and let pdf take care of the hard stuff.}
  gem.email = "igor.alexandrov@gmail.com"
  gem.authors = [ "Igor Alexandrov" ]
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 = "wisepdf #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
wisepdf-1.2.10 Rakefile
wisepdf-1.2.9 Rakefile
wisepdf-1.2.8 Rakefile
wisepdf-1.2.7 Rakefile
wisepdf-1.2.6 Rakefile
wisepdf-1.2.5 Rakefile
wisepdf-1.2.4 Rakefile
wisepdf-1.2.3 Rakefile
wisepdf-1.2.2 Rakefile
wisepdf-1.2.1 Rakefile
wisepdf-1.2.0 Rakefile
wisepdf-1.1.3 Rakefile
wisepdf-1.1.2 Rakefile
wisepdf-1.1.1 Rakefile
wisepdf-1.1.0 Rakefile
wisepdf-1.0.3 Rakefile
wisepdf-1.0.2 Rakefile
wisepdf-1.0.1 Rakefile
wisepdf-1.0.0 Rakefile