-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathchess.gemspec
More file actions
21 lines (17 loc) · 727 Bytes
/
chess.gemspec
File metadata and controls
21 lines (17 loc) · 727 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require_relative 'lib/chess/version'
Gem::Specification.new do |s|
s.name = 'chess'
s.version = Chess::VERSION
s.authors = ['Enrico Pilotto']
s.email = ['epilotto@gmx.com']
s.homepage = 'https://github.com/pioz/chess'
s.summary = 'A fast chess library to play chess with Ruby.'
s.description = 'A fast chess library that use bitboards to play chess with Ruby.'
s.license = 'LGPLv3'
s.files = `git ls-files`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map { |f| File.basename(f) }
s.extensions = ['ext/chess/extconf.rb']
s.require_paths = ['lib']
s.metadata['rubygems_mfa_required'] = 'true'
s.required_ruby_version = '>= 3.4'
end