forked from threedaymonk/text
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtext.gemspec
More file actions
16 lines (15 loc) · 764 Bytes
/
Copy pathtext.gemspec
File metadata and controls
16 lines (15 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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, Figlet, 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]
s.rubyforge_project = 'text'
s.homepage = 'http://github.com/threedaymonk/text'
s.authors = ['Paul Battley', 'Michael Neumann', 'Tim Fletcher']
s.email = "pbattley@gmail.com"
end