forked from xunker/uci
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuci.gemspec
More file actions
24 lines (21 loc) · 928 Bytes
/
uci.gemspec
File metadata and controls
24 lines (21 loc) · 928 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
# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'uci'
Gem::Specification.new do |gem|
gem.name = "uci"
gem.version = Uci::VERSION
gem.authors = ["Matthew Nielsen"]
gem.email = ["xunker@pyxidis.org"]
gem.description = %q{Ruby library for the Universal Chess Interface (UCI)}
gem.summary = %q{Ruby library for the Universal Chess Interface (UCI)}
gem.homepage = "https://github.com/xunker/uci"
gem.required_ruby_version = '>= 1.9.1'
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|features)/})
gem.require_paths = ["lib"]
gem.has_rdoc = true
gem.add_development_dependency('simplecov', '0.7.1')
gem.add_development_dependency('rspec', '2.12.0')
end