2022-11-05 16:04:42 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rake'
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2022-11-09 07:40:17 +00:00
|
|
|
s.name = 'teeworlds_network'
|
2023-12-13 18:33:50 +00:00
|
|
|
s.version = '0.0.7'
|
2022-11-09 07:40:17 +00:00
|
|
|
s.summary = 'teeworlds 0.7 network protocol (client and server)'
|
2022-11-05 16:04:42 +00:00
|
|
|
s.description = <<-DESC
|
|
|
|
A library wrapping the network protocol of the game teeworlds.
|
2022-11-09 07:40:17 +00:00
|
|
|
Only supporting the version 0.7 of the teeworlds protocol.
|
2022-11-05 16:04:42 +00:00
|
|
|
DESC
|
|
|
|
s.authors = ['ChillerDragon']
|
|
|
|
s.email = 'ChillerDragon@gmail.com'
|
|
|
|
s.files = FileList[
|
2023-09-17 15:16:18 +00:00
|
|
|
'lib/**/*.rb'
|
2022-11-05 16:04:42 +00:00
|
|
|
]
|
|
|
|
s.required_ruby_version = '>= 3.1.2'
|
2024-01-21 06:34:13 +00:00
|
|
|
s.add_dependency 'huffman_tw', '~> 0.0.2'
|
2022-11-05 16:04:42 +00:00
|
|
|
s.add_dependency 'rspec', '~> 3.9.0'
|
2022-11-09 07:40:17 +00:00
|
|
|
s.homepage = 'https://github.com/ChillerDragon/teeworlds_network'
|
2022-11-05 16:04:42 +00:00
|
|
|
s.license = 'Unlicense'
|
|
|
|
s.metadata['rubygems_mfa_required'] = 'true'
|
2023-09-17 15:21:07 +00:00
|
|
|
s.metadata['documentation_uri'] = 'https://github.com/ChillerDragon/teeworlds_network/tree/master/docs'
|
2022-11-05 16:04:42 +00:00
|
|
|
end
|