Sha256: 6a17e30cbe8888e193c62590aa9d90f0b32291ac7c21030aa7873737c7ce1b61
Contents?: true
Size: 955 Bytes
Versions: 4
Compression:
Stored size: 955 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "grim/version" Gem::Specification.new do |s| s.name = "grim" s.version = Grim::VERSION s.authors = ["Jonathan Hoyt"] s.email = ["jonmagic@gmail.com"] s.homepage = "http://github.com/jonmagic/grim" s.summary = %q{Extract slides and text from a PDF.} s.description = %q{Grim is a simple gem for extracting a page from a pdf and converting it to an image as well as extract the text from the page as a string. It basically gives you an easy to use api to ghostscript, imagemagick, and pdftotext specific to this use case.} s.rubyforge_project = "grim" s.add_dependency 'safe_shell', '~> 1.0.0' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.require_paths = ["lib"] end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
grim-0.2.4 | grim.gemspec |
grim-0.2.3 | grim.gemspec |
grim-0.2.2 | grim.gemspec |
grim-0.2.1 | grim.gemspec |