diff options
author | BurdetteLamar <[email protected]> | 2022-06-30 15:50:43 -0500 |
---|---|---|
committer | git <[email protected]> | 2022-07-02 21:49:13 +0900 |
commit | 7e8fd40c063298da6bc94ef80f4e0feae808d205 (patch) | |
tree | 640fb4be869df45d38c511ba8189741cd8ca9c82 /lib/pstore.rb | |
parent | d7419354acaaad6631ed4b6f82eb90a6a37f6d96 (diff) |
[ruby/pstore] Enhanced RDoc
https://github.com/ruby/pstore/commit/7e56730689
Diffstat (limited to 'lib/pstore.rb')
-rw-r--r-- | lib/pstore.rb | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/lib/pstore.rb b/lib/pstore.rb index a8d4bb8607..bbee757212 100644 --- a/lib/pstore.rb +++ b/lib/pstore.rb @@ -44,25 +44,26 @@ require "digest" # # Example code using store goes here. # end # -# The implementation of +example_store+ -# (which is profoundly unimportant here): +# All we really need to know about +example_store+ +# is that it yields a fresh store with a known population of roots; +# its implementation: # # require 'pstore' # require 'tempfile' # # Yield a pristine store for use in examples. # def example_store -# # Create the store in a temporary file. -# Tempfile.create do |file| -# store = PStore.new(file) -# # Populate the store. -# store.transaction do -# store[:foo] = 0 -# store[:bar] = 1 -# store[:baz] = 2 +# # Create the store in a temporary file. +# Tempfile.create do |file| +# store = PStore.new(file) +# # Populate the store. +# store.transaction do +# store[:foo] = 0 +# store[:bar] = 1 +# store[:baz] = 2 +# end +# yield store # end -# yield store # end -# end # # == The Store # |