about summary refs log tree commit homepage
path: root/lib/dtas/serialize.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dtas/serialize.rb')
-rw-r--r--lib/dtas/serialize.rb10
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/dtas/serialize.rb b/lib/dtas/serialize.rb
new file mode 100644
index 0000000..57eb626
--- /dev/null
+++ b/lib/dtas/serialize.rb
@@ -0,0 +1,10 @@
+# -*- encoding: binary -*-
+# :stopdoc:
+# Copyright (C) 2013, Eric Wong <normalperson@yhbt.net>
+# License: GPLv3 or later (https://www.gnu.org/licenses/gpl-3.0.txt)
+module DTAS::Serialize
+  def ivars_to_hash(ivars, rv = {})
+    ivars.each { |k| rv[k] = instance_variable_get("@#{k}") }
+    rv
+  end
+end