chess-data.gemspec 850 B

12345678910111213141516171819202122232425262728
  1. Gem::Specification.new do |s|
  2. s.name = "chess-data"
  3. s.platform = Gem::Platform::RUBY
  4. s.required_ruby_version = '>= 2.5'
  5. s.author = "Peter Lane"
  6. s.version = "1.0.5"
  7. s.email = "peterlane@gmx.com"
  8. s.summary = "For searching/filtering datasets of chess games based on combinations of pieces."
  9. s.license = "MIT"
  10. s.description = <<-END
  11. For searching/filtering datasets of chess games. This gem allows you to read
  12. collections of games from PGN files, select games which reach positions
  13. matching specific combinations of pieces, and save these games back in PGN
  14. format.
  15. END
  16. s.files = [
  17. "LICENSE.txt",
  18. "README.rdoc"
  19. ] + Dir["lib/**/*.rb"]
  20. s.require_path = "lib"
  21. s.extra_rdoc_files = ['README.rdoc', 'LICENSE.txt']
  22. s.rdoc_options << '-m' << 'README.rdoc'
  23. s.add_runtime_dependency 'word_wrap', '~> 1.0', '>= 1.0.0'
  24. end