We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3fce289 commit ee8344eCopy full SHA for ee8344e
2 files changed
test/ruby/memory_status.rb
@@ -7,7 +7,7 @@ module Memory
7
PROC_FILE = procfile
8
VM_PAT = /^Vm(\w+):\s+(\d+)/
9
def self.read_status
10
- IO.foreach(PROC_FILE) do |l|
+ IO.foreach(PROC_FILE, encoding: Encoding::ASCII_8BIT) do |l|
11
yield($1.downcase.intern, $2.to_i * 1024) if VM_PAT =~ l
12
end
13
version.h
@@ -1,10 +1,10 @@
1
#define RUBY_VERSION "1.9.3"
2
-#define RUBY_PATCHLEVEL 536
+#define RUBY_PATCHLEVEL 537
3
4
-#define RUBY_RELEASE_DATE "2014-02-18"
+#define RUBY_RELEASE_DATE "2014-02-19"
5
#define RUBY_RELEASE_YEAR 2014
6
#define RUBY_RELEASE_MONTH 2
-#define RUBY_RELEASE_DAY 18
+#define RUBY_RELEASE_DAY 19
#include "ruby/version.h"
0 commit comments