From e32e0a2d3d75df947cb547b315e23c4fbd36d906 Mon Sep 17 00:00:00 2001 From: hsbt Date: Wed, 23 Jul 2014 19:31:18 +0000 Subject: [PATCH] * lib/pstore.rb: split executable code into sample directory. * sample/pstore.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@46917 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/pstore.rb | 22 ---------------------- sample/pstore.rb | 19 +++++++++++++++++++ 3 files changed, 24 insertions(+), 22 deletions(-) create mode 100644 sample/pstore.rb diff --git a/ChangeLog b/ChangeLog index 9aecdaeae8..eb6ed98244 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Jul 24 04:29:36 2014 SHIBATA Hiroshi + + * lib/pstore.rb: split executable code into sample directory. + * sample/pstore.rb: ditto. + Wed Jul 23 23:50:11 2014 Nobuyoshi Nakada * include/ruby/defines.h, siphash.c, st.c (UNALIGNED_WORD_ACCESS): diff --git a/lib/pstore.rb b/lib/pstore.rb index a2813a8e20..02c20c91c7 100644 --- a/lib/pstore.rb +++ b/lib/pstore.rb @@ -482,25 +482,3 @@ class PStore EMPTY_MARSHAL_CHECKSUM end end - -# :enddoc: - -if __FILE__ == $0 - db = PStore.new("/tmp/foo") - db.transaction do - p db.roots - ary = db["root"] = [1,2,3,4] - ary[1] = [1,1.5] - end - - 1000.times do - db.transaction do - db["root"][0] += 1 - p db["root"][0] - end - end - - db.transaction(true) do - p db["root"] - end -end diff --git a/sample/pstore.rb b/sample/pstore.rb new file mode 100644 index 0000000000..38c2305516 --- /dev/null +++ b/sample/pstore.rb @@ -0,0 +1,19 @@ +require 'pstore' + +db = PStore.new("/tmp/foo") +db.transaction do + p db.roots + ary = db["root"] = [1,2,3,4] + ary[1] = [1,1.5] +end + +1000.times do + db.transaction do + db["root"][0] += 1 + p db["root"][0] + end +end + +db.transaction(true) do + p db["root"] +end