-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathtext.gemspec
18 lines (17 loc) · 847 Bytes
/
text.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
require File.expand_path('../lib/text/version', __FILE__)
gemspec = Gem::Specification.new do |s|
s.name = 'text'
s.version = Text::VERSION::STRING
s.summary = 'A collection of text algorithms'
s.description = 'A collection of text algorithms: Levenshtein, Soundex, Metaphone, Double Metaphone, Porter Stemming'
s.files = Dir.glob("{lib,test}/**/*") + %w{README.rdoc Rakefile}
s.require_path = 'lib'
s.has_rdoc = true
s.extra_rdoc_files = %w[README.rdoc COPYING.txt]
s.rubyforge_project = 'text'
s.homepage = 'http://github.com/threedaymonk/text'
s.authors = ['Paul Battley', 'Michael Neumann', 'Tim Fletcher']
s.email = "pbattley@gmail.com"
s.license = "MIT"
s.add_development_dependency "rake", "~> 10.0"
end