forked from kaspergrubbe/ruby-vnc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ruby-vnc.gemspec
32 lines (27 loc) · 928 Bytes
/
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
Kernel.load File.dirname(__FILE__) + '/lib/net/vnc/version.rb'
PKG_NAME = 'ruby-vnc'
PKG_VERSION = Net::VNC::VERSION
Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = %q{Ruby VNC library.}
s.description = %q{A library which implements the client VNC protocol to control VNC servers.}
s.authors = ['Charles Lowe']
s.email = %q{[email protected]}
s.homepage = %q{http://code.google.com/p/ruby-vnc}
s.rubyforge_project = %q{ruby-vnc}
# none yet
#s.executables = ['oletool']
s.files = ['Rakefile', 'README', 'COPYING', 'ChangeLog', 'data/keys.yaml']
s.files += FileList['lib/**/*.rb']
s.files += FileList['spec/*_spec.rb']
# is there an rspec equivalent?
#s.test_files = FileList['test/test_*.rb']
s.has_rdoc = true
s.extra_rdoc_files = ['README', 'ChangeLog']
s.rdoc_options += [
'--main', 'README',
'--title', "#{PKG_NAME} documentation",
'--tab-width', '2'
]
end