From 6b9e9edfef4aff4217c4e95ecae4f8fe13b03bb9 Mon Sep 17 00:00:00 2001 From: Vassilis Rizopoulos Date: Fri, 13 Mar 2015 20:33:04 +0100 Subject: force binary mode when deserializing the program --- lib/systemu.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systemu.rb b/lib/systemu.rb index c32b9bc..1227d10 100644 --- a/lib/systemu.rb +++ b/lib/systemu.rb @@ -179,7 +179,7 @@ class SystemUniversal PIPE = STDOUT.dup begin - config = Marshal.load(IO.read('#{ config }')) + config = Marshal.load(IO.read('#{ config }',:mode=>"rb")) argv = config['argv'] env = config['env'] -- cgit v1.2.1 From 0a8fcb16f7878dec2acc467c500bb84c178421f0 Mon Sep 17 00:00:00 2001 From: Vassilis Rizopoulos Date: Mon, 16 Mar 2015 11:31:45 +0100 Subject: Bumped the version --- lib/systemu.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/systemu.rb b/lib/systemu.rb index 1227d10..2f045d2 100644 --- a/lib/systemu.rb +++ b/lib/systemu.rb @@ -14,7 +14,7 @@ class SystemUniversal # # constants # - SystemUniversal::VERSION = '2.6.4' unless SystemUniversal.send(:const_defined?, :VERSION) + SystemUniversal::VERSION = '2.6.5' unless SystemUniversal.send(:const_defined?, :VERSION) def SystemUniversal.version() SystemUniversal::VERSION end def version() SystemUniversal::VERSION end def SystemUniversal.description -- cgit v1.2.1