12345678910111213141516171819202122232425262728 |
- Gem::Specification.new do |s|
- s.name = "chess-data"
- s.platform = Gem::Platform::RUBY
- s.required_ruby_version = '>= 2.5'
- s.author = "Peter Lane"
- s.version = "1.0.5"
- s.email = "peterlane@gmx.com"
- s.summary = "For searching/filtering datasets of chess games based on combinations of pieces."
- s.license = "MIT"
- s.description = <<-END
- For searching/filtering datasets of chess games. This gem allows you to read
- collections of games from PGN files, select games which reach positions
- matching specific combinations of pieces, and save these games back in PGN
- format.
- END
- s.files = [
- "LICENSE.txt",
- "README.rdoc"
- ] + Dir["lib/**/*.rb"]
- s.require_path = "lib"
- s.extra_rdoc_files = ['README.rdoc', 'LICENSE.txt']
- s.rdoc_options << '-m' << 'README.rdoc'
- s.add_runtime_dependency 'word_wrap', '~> 1.0', '>= 1.0.0'
- end
|