# File lib/moneta/adapters/pstore.rb, line 79 def new_store(options) if RUBY_VERSION > '1.9' ::PStore.new(options[:file], options[:threadsafe]) else ::PStore.new(options[:file]) end end