forked from keithrbennett/rika
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrika.gemspec
21 lines (20 loc) · 966 Bytes
/
rika.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'rika/version'
Gem::Specification.new do |gem|
gem.name = "rika"
gem.version = Rika::VERSION
gem.authors = ["Richard Nyström"]
gem.email = ["[email protected]"]
gem.description = %q{ A JRuby wrapper for Apache Tika to extract text and metadata from various file formats. }
gem.summary = %q{ A JRuby wrapper for Apache Tika to extract text and metadata from various file formats. }
gem.homepage = "https://github.com/ricn/rika"
gem.files = `git ls-files`.split($/)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.require_paths = ["lib"]
gem.add_development_dependency "rspec", "2.14.1"
gem.add_development_dependency "rake", "10.3.1"
gem.platform = "java"
end