virtualbox 0.8.5 → 0.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/virtualbox/lib.rb +2 -1
- data/lib/virtualbox/version.rb +1 -1
- data/test/virtualbox/lib_test.rb +1 -1
- metadata +4 -6
data/lib/virtualbox/lib.rb
CHANGED
@@ -56,7 +56,8 @@ module VirtualBox
|
|
56
56
|
if Platform.mac?
|
57
57
|
@@lib_path = ["/Applications/VirtualBox.app/Contents/MacOS/VBoxXPCOMC.dylib"]
|
58
58
|
elsif Platform.linux?
|
59
|
-
@@lib_path = ["/opt/VirtualBox/VBoxXPCOMC.so", "/usr/lib/virtualbox/VBoxXPCOMC.so"
|
59
|
+
@@lib_path = ["/opt/VirtualBox/VBoxXPCOMC.so", "/usr/lib/virtualbox/VBoxXPCOMC.so",
|
60
|
+
"/usr/lib64/virtualbox/VBoxXPCOMC.so"]
|
60
61
|
elsif Platform.solaris?
|
61
62
|
@@lib_path = ["/opt/VirtualBox/amd64/VBoxXPCOMC.so", "/opt/VirtualBox/i386/VBoxXPCOMC.so"]
|
62
63
|
elsif Platform.windows?
|
data/lib/virtualbox/version.rb
CHANGED
data/test/virtualbox/lib_test.rb
CHANGED
@@ -29,7 +29,7 @@ class LibTest < Test::Unit::TestCase
|
|
29
29
|
end
|
30
30
|
|
31
31
|
should "return Linux-path if on linux" do
|
32
|
-
result = ["/opt/VirtualBox/VBoxXPCOMC.so", "/usr/lib/virtualbox/VBoxXPCOMC.so"]
|
32
|
+
result = ["/opt/VirtualBox/VBoxXPCOMC.so", "/usr/lib/virtualbox/VBoxXPCOMC.so", "/usr/lib64/virtualbox/VBoxXPCOMC.so"]
|
33
33
|
VirtualBox::Platform.stubs(:mac?).returns(false)
|
34
34
|
VirtualBox::Platform.stubs(:windows?).returns(false)
|
35
35
|
VirtualBox::Platform.stubs(:linux?).returns(true)
|
metadata
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
name: virtualbox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.8.
|
5
|
+
version: 0.8.6
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
8
|
- Mitchell Hashimoto
|
@@ -10,8 +10,7 @@ autorequire:
|
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
|
13
|
-
date: 2011-05-
|
14
|
-
default_executable:
|
13
|
+
date: 2011-05-16 00:00:00 Z
|
15
14
|
dependencies:
|
16
15
|
- !ruby/object:Gem::Dependency
|
17
16
|
name: ffi
|
@@ -411,7 +410,6 @@ files:
|
|
411
410
|
- test/virtualbox/vrde_server_test.rb
|
412
411
|
- test/virtualbox_test.rb
|
413
412
|
- virtualbox.gemspec
|
414
|
-
has_rdoc: true
|
415
413
|
homepage: http://github.com/mitchellh/virtualbox
|
416
414
|
licenses: []
|
417
415
|
|
@@ -425,7 +423,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
425
423
|
requirements:
|
426
424
|
- - ">="
|
427
425
|
- !ruby/object:Gem::Version
|
428
|
-
hash: -
|
426
|
+
hash: -4241268900487062131
|
429
427
|
segments:
|
430
428
|
- 0
|
431
429
|
version: "0"
|
@@ -438,7 +436,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
438
436
|
requirements: []
|
439
437
|
|
440
438
|
rubyforge_project: virtualbox
|
441
|
-
rubygems_version: 1.
|
439
|
+
rubygems_version: 1.8.2
|
442
440
|
signing_key:
|
443
441
|
specification_version: 3
|
444
442
|
summary: Create and modify virtual machines in VirtualBox using pure ruby
|