Sha256: 7c8668372aa123de3614438dc8e2051d7077e9a55f7606cdd7c07a82e080e218
Contents?: true
Size: 906 Bytes
Versions: 2
Compression:
Stored size: 906 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'rubykon/version' Gem::Specification.new do |spec| spec.name = "rubykon" spec.version = Rubykon::VERSION spec.authors = ["Tobias Pfeiffer"] spec.email = ["pragtob@gmail.com"] spec.summary = %q{An AI to play Go using Monte Carlo Tree Search.} spec.description = %q{An AI to play Go using Monte Carlo Tree Search. Currently includes the mcts gem and benchmark/avg. Works on all major ruby versions.} spec.homepage = "https://github.com/PragTob/rubykon" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubykon-0.3.1 | rubykon.gemspec |
rubykon-0.3.0 | rubykon.gemspec |