-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhtm.gemspec
More file actions
26 lines (22 loc) · 960 Bytes
/
htm.gemspec
File metadata and controls
26 lines (22 loc) · 960 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/htm/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Romain Franceschini"]
gem.email = ["franceschini.romain@gmail.com"]
gem.description = %q{HTM}
gem.summary = %q{Hierarchical Temporal Memory}
gem.homepage = "https://github.com/romain1189/htm"
gem.license = 'NUMENTA'
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)/})
gem.name = "htm"
gem.require_paths = ["lib"]
gem.version = HTM::VERSION.dup
gem.add_dependency('celluloid', '~> 0.14.0')
gem.add_dependency('ffi-rzmq', '~> 1.0.1')
gem.add_development_dependency('bundler', '~> 1.3')
gem.add_development_dependency('rake')
gem.add_development_dependency('minitest')
gem.add_development_dependency('benchmark_suite')
end