Sha256: a62b72111c5afd9550face6c25640b49cb0317a3badc62319634ba3b5d8a1fe1
Contents?: true
Size: 804 Bytes
Versions: 9
Compression:
Stored size: 804 Bytes
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path('../lib', __FILE__) require 'chess/version' Gem::Specification.new do |s| s.name = 'chess' s.version = Chess::VERSION s.authors = ['Enrico Pilotto'] s.email = ['enrico@megiston.it'] s.homepage = 'https://github.com/pioz/chess' s.summary = %q{A fast chess library to play chess with Ruby.} s.description = %q{A fast chess library that use bitboards to play chess with Ruby.} s.license = 'LGPLv3' s.rubyforge_project = 'chess' s.files = `git ls-files`.split("\n") s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n") s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) } s.extensions = ['ext/extconf.rb'] s.require_paths = ['lib'] end
Version data entries
9 entries across 9 versions & 1 rubygems