renet 0.1.5-i386-mingw32 → 0.1.6-i386-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/renet.rb +7 -5
- metadata +1 -1
data/lib/renet.rb
CHANGED
@@ -6,9 +6,11 @@ if File.exists?("#{File.dirname(__FILE__)}/renet.so")
|
|
6
6
|
require "#{File.dirname(__FILE__)}/renet.so"
|
7
7
|
end
|
8
8
|
|
9
|
-
if
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
if File.exists?("#{File.dirname(__FILE__)}/renet.1.8.so")
|
10
|
+
if defined? RUBY_VERSION and RUBY_VERSION[0..2] == '1.9' then
|
11
|
+
version = '1.9'
|
12
|
+
else
|
13
|
+
version = '1.8'
|
14
|
+
end
|
15
|
+
require "#{File.dirname(__FILE__)}/renet.#{version}.so"
|
13
16
|
end
|
14
|
-
require "#{File.dirname(__FILE__)}/renet.#{version}.so"
|