forked from tangledpath/ruby-fann
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathruby-fann.gemspec
22 lines (21 loc) · 1.43 KB
/
ruby-fann.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'ruby_fann/version'
Gem::Specification.new do |gem|
gem.name = "ruby-fann"
gem.version = RubyFann::VERSION::STRING
gem.authors = ["tangledpath"]
gem.email = ["[email protected]"]
gem.description = %q{Bindings to use FANN from within ruby/rails environment}
gem.summary = %q{Bindings to use FANN from within ruby/rails environment. Fann is a is a free open source neural network library, which implements multilayer artificial neural networks with support for both fully connected and sparsely connected networks. It is easy to use, versatile, well documented, and fast. RubyFann makes working with neural networks a breeze using ruby, with the added benefit that most of the heavy lifting is done natively.}
gem.homepage = "http://github.com/tangledpath/ruby-fann"
gem.rubyforge_project = 'ruby-fann'
gem.has_rdoc = true
gem.extra_rdoc_files = ['README.md', 'ext/ruby_fann/ruby_fann.c']
gem.files = Dir.glob('lib/**/*.rb') + Dir.glob('ext/**/*.{c,h,rb}')
gem.extensions = ['ext/ruby_fann/extconf.rb']
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", "ext"]
end