Sha256: b8575b6b41623bf9566f46e29bc0a21f3dd6b952b7b92d16155c4a0021061cc2
Contents?: true
Size: 1.12 KB
Versions: 1
Compression:
Stored size: 1.12 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) Gem::Specification.new do |spec| spec.name = 'chess_openings' spec.version = '1.0.2' spec.authors = ['Simão Neves'] spec.email = ['simaocostaneves@gmail.com'] if spec.respond_to?(:metadata) end spec.summary = 'Gem that allows you to calculate which opening was used in a chess game' spec.description = 'Gem that allows you to know what chess opening was used in a chess game, find chess openings by name or get all openings that start with certain moves' spec.homepage = 'http://www.github.com/simaoneves/chess_openings' spec.license = 'MIT' spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.require_paths = ['lib'] spec.add_dependency 'pgn', '0.1.1' spec.add_development_dependency 'bundler', '~> 1.8' spec.add_development_dependency 'rspec', '~> 3.3.0' spec.add_development_dependency 'rake', '~> 10.0' spec.add_development_dependency 'yard' spec.add_development_dependency 'pry' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chess_openings-1.0.2 | chess_openings.gemspec |