-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtextractor.gemspec
26 lines (21 loc) · 1.04 KB
/
textractor.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
require File.expand_path("../lib/textractor/version", __FILE__)
Gem::Specification.new do |s|
s.name = "textractor"
s.version = Textractor::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Michael Guterl']
s.email = ['[email protected]']
s.homepage = "http://github.com/mguterl/textractor"
s.summary = "simple wrapper around CLI for extracting text from PDF and Word documents"
s.description = "simple wrapper around CLI for extracting text from PDF and Word documents"
s.required_rubygems_version = ">= 1.3.6"
s.rubyforge_project = "textractor"
s.add_development_dependency "bundler", ">= 1.0.0"
s.add_development_dependency "rspec", "~> 2.1.0"
s.add_runtime_dependency "escape", ">=0.0.4"
s.files = `git ls-files`.split("\n").reject{|f| f.gsub(/"/, "") =~ /^spec/}
s.executables = `git ls-files`.split("\n").map{|f| f =~ /^bin\/(.*)/ ? $1 : nil}.compact
s.require_path = 'lib'
s.extra_rdoc_files = ["LICENSE", "README.md"]
s.rdoc_options = ["--charset=UTF-8"]
end