ruby-vnc 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/COPYING +20 -0
- data/ChangeLog +5 -0
- data/Rakefile +2 -32
- data/lib/net/vnc/version.rb +1 -1
- metadata +28 -12
data/COPYING
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2007-2010 Charles Lowe
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
4
|
+
of this software and associated documentation files (the "Software"), to deal
|
5
|
+
in the Software without restriction, including without limitation the rights
|
6
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
7
|
+
copies of the Software, and to permit persons to whom the Software is
|
8
|
+
furnished to do so, subject to the following conditions:
|
9
|
+
|
10
|
+
The above copyright notice and this permission notice shall be included in
|
11
|
+
all copies or substantial portions of the Software.
|
12
|
+
|
13
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
14
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
15
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
16
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
17
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
18
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
19
|
+
THE SOFTWARE.
|
20
|
+
|
data/ChangeLog
CHANGED
data/Rakefile
CHANGED
@@ -4,10 +4,7 @@ require 'rake/gempackagetask'
|
|
4
4
|
require 'spec/rake/spectask'
|
5
5
|
require 'spec/rake/verify_rcov'
|
6
6
|
|
7
|
-
|
8
|
-
|
9
|
-
PKG_NAME = 'ruby-vnc'
|
10
|
-
PKG_VERSION = Net::VNC::VERSION
|
7
|
+
spec = eval File.read('ruby-vnc.gemspec')
|
11
8
|
|
12
9
|
task :default => :spec
|
13
10
|
|
@@ -47,36 +44,9 @@ Rake::RDocTask.new do |t|
|
|
47
44
|
t.main = 'README'
|
48
45
|
end
|
49
46
|
|
50
|
-
spec = Gem::Specification.new do |s|
|
51
|
-
s.name = PKG_NAME
|
52
|
-
s.version = PKG_VERSION
|
53
|
-
s.summary = %q{Ruby VNC library.}
|
54
|
-
s.description = %q{A library which implements the client VNC protocol to control VNC servers.}
|
55
|
-
s.authors = ['Charles Lowe']
|
56
|
-
s.email = %q{aquasync@gmail.com}
|
57
|
-
# not yet registered
|
58
|
-
#s.homepage = %q{http://code.google.com/p/ruby-vnc}
|
59
|
-
#s.rubyforge_project = %q{ruby-vnc}
|
60
|
-
|
61
|
-
# none yet
|
62
|
-
#s.executables = ['oletool']
|
63
|
-
s.files = ['Rakefile', 'README', 'ChangeLog', 'data/keys.yaml']
|
64
|
-
s.files += FileList['lib/**/*.rb']
|
65
|
-
s.files += FileList['spec/*_spec.rb']
|
66
|
-
# is there an rspec equivalent?
|
67
|
-
#s.test_files = FileList['test/test_*.rb']
|
68
|
-
|
69
|
-
s.has_rdoc = true
|
70
|
-
s.rdoc_options += [
|
71
|
-
'--main', 'README',
|
72
|
-
'--title', "#{PKG_NAME} documentation",
|
73
|
-
'--tab-width', '2'
|
74
|
-
]
|
75
|
-
end
|
76
|
-
|
77
47
|
Rake::GemPackageTask.new(spec) do |t|
|
78
48
|
t.gem_spec = spec
|
79
|
-
t.need_tar =
|
49
|
+
t.need_tar = true
|
80
50
|
t.need_zip = false
|
81
51
|
t.package_dir = 'build'
|
82
52
|
end
|
data/lib/net/vnc/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-vnc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
|
4
|
+
hash: 21
|
5
|
+
prerelease: false
|
6
|
+
segments:
|
7
|
+
- 1
|
8
|
+
- 0
|
9
|
+
- 1
|
10
|
+
version: 1.0.1
|
5
11
|
platform: ruby
|
6
12
|
authors:
|
7
13
|
- Charles Lowe
|
@@ -9,7 +15,7 @@ autorequire:
|
|
9
15
|
bindir: bin
|
10
16
|
cert_chain: []
|
11
17
|
|
12
|
-
date:
|
18
|
+
date: 2011-09-15 00:00:00 -04:00
|
13
19
|
default_executable:
|
14
20
|
dependencies: []
|
15
21
|
|
@@ -19,20 +25,24 @@ executables: []
|
|
19
25
|
|
20
26
|
extensions: []
|
21
27
|
|
22
|
-
extra_rdoc_files:
|
23
|
-
|
28
|
+
extra_rdoc_files:
|
29
|
+
- README
|
30
|
+
- ChangeLog
|
24
31
|
files:
|
25
32
|
- Rakefile
|
26
33
|
- README
|
34
|
+
- COPYING
|
27
35
|
- ChangeLog
|
28
36
|
- data/keys.yaml
|
29
37
|
- lib/cipher/des.rb
|
30
|
-
- lib/net/vnc/version.rb
|
31
38
|
- lib/net/vnc.rb
|
32
|
-
-
|
39
|
+
- lib/net/vnc/version.rb
|
33
40
|
- spec/net_vnc_spec.rb
|
41
|
+
- spec/cipher_des_spec.rb
|
34
42
|
has_rdoc: true
|
35
|
-
homepage:
|
43
|
+
homepage: http://code.google.com/p/ruby-vnc
|
44
|
+
licenses: []
|
45
|
+
|
36
46
|
post_install_message:
|
37
47
|
rdoc_options:
|
38
48
|
- --main
|
@@ -44,23 +54,29 @@ rdoc_options:
|
|
44
54
|
require_paths:
|
45
55
|
- lib
|
46
56
|
required_ruby_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
47
58
|
requirements:
|
48
59
|
- - ">="
|
49
60
|
- !ruby/object:Gem::Version
|
61
|
+
hash: 3
|
62
|
+
segments:
|
63
|
+
- 0
|
50
64
|
version: "0"
|
51
|
-
version:
|
52
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
53
67
|
requirements:
|
54
68
|
- - ">="
|
55
69
|
- !ruby/object:Gem::Version
|
70
|
+
hash: 3
|
71
|
+
segments:
|
72
|
+
- 0
|
56
73
|
version: "0"
|
57
|
-
version:
|
58
74
|
requirements: []
|
59
75
|
|
60
|
-
rubyforge_project:
|
61
|
-
rubygems_version: 1.
|
76
|
+
rubyforge_project: ruby-vnc
|
77
|
+
rubygems_version: 1.3.7
|
62
78
|
signing_key:
|
63
|
-
specification_version:
|
79
|
+
specification_version: 3
|
64
80
|
summary: Ruby VNC library.
|
65
81
|
test_files: []
|
66
82
|
|