forked from jwilkins/nilsimsa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnilsimsa.gemspec
24 lines (22 loc) · 987 Bytes
/
nilsimsa.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
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/nilsimsa/version', __FILE__)
SPEC = Gem::Specification.new do |spec|
# Descriptive and source information for this gem.
spec.name = "nilsimsa"
spec.version = Nilsimsa::VERSION
spec.summary = "Computes Nilsimsa values. Nilsimsa is a distance based hash"
spec.author = "Jonathan Wilkins"
spec.email = "jwilkins[at]nospam[dot]bitland[dot]net"
spec.has_rdoc = true
spec.extra_rdoc_files = ["README.md"]
spec.files = `git ls-files README.md .gitignore .travis.yml Gemfile Rakefile bin ext lib nilsimsa.gemspec`.split
spec.test_files = `git ls-files spec examples`.split
# spec.files = %w(Gemfile Rakefile README.md nilsimsa.gemspec
# lib/nilsimsa.rb
# bin/nilsimsa
# examples/simple.rb
# ext/extconf.rb ext/nilsimsa.c)
spec.executables = ['nilsimsa']
# optional native component
spec.extensions = ['ext/nilsimsa/extconf.rb']
end