-
Notifications
You must be signed in to change notification settings - Fork 17
/
ruby-vnc.gemspec
38 lines (30 loc) · 1.16 KB
/
ruby-vnc.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# frozen_string_literal: true
require File.expand_path('lib/net/vnc/version.rb', __dir__)
pkg_name = 'ruby-vnc'
pkg_version = Net::VNC::VERSION
Gem::Specification.new do |s|
s.name = pkg_name
s.version = pkg_version
s.summary = 'Ruby VNC library.'
s.description = 'A library which implements the client VNC protocol to control VNC servers.'
s.authors = ['Charles Lowe']
s.email = '[email protected]'
s.homepage = 'https://github.com/kaspergrubbe/ruby-vnc'
s.license = 'MIT'
s.required_ruby_version = '>= 3.0.0'
s.files = ['Rakefile', 'README.rdoc', 'COPYING', 'Changelog.rdoc', 'data/keys.yaml']
s.files += Dir.glob('lib/**/*.rb')
s.files += Dir.glob('spec/*_spec.rb')
s.extra_rdoc_files = ['README.rdoc', 'Changelog.rdoc']
s.rdoc_options += [
'--main', 'README.rdoc',
'--title', "#{pkg_name} documentation",
'--tab-width', '2'
]
s.add_runtime_dependency 'chunky_png', '~> 1.4.0'
s.add_runtime_dependency 'vncrec', '~> 1.0.6'
s.add_development_dependency 'image_size', '~> 2.0'
s.add_development_dependency 'rake', '~> 12.3'
s.add_development_dependency 'rspec', '~> 3.7'
s.add_development_dependency 'simplecov', '~> 0.16'
end