-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtext_alignment.gemspec
23 lines (20 loc) · 1 KB
/
text_alignment.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'text_alignment/version'
Gem::Specification.new do |gem|
gem.name = 'text_alignment'
gem.version = TextAlignment::VERSION
gem.authors = ['Jin-Dong Kim']
gem.email = ['[email protected]']
gem.description = %q{A ruby class that allows for computing the alignment
of two character strings and annotations made to them.}
gem.summary = 'Ruby class for aligning two character strings'
gem.license = 'MIT'
gem.files = `git ls-files`.split($/) - `git ls-files spec`.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_runtime_dependency 'ruby-dictionary', '~>1.1', '>=1.1.1'
gem.add_runtime_dependency 'string-similarity', '~> 2.1'
gem.add_development_dependency 'rspec', '~>3.0'
end