Sha256: 496188ddf2ae964445c8a152ff0accf5af73bb7fb809b637fe5b67f387e46123

Contents?: true

Size: 1.64 KB

Versions: 19

Compression:

Stored size: 1.64 KB

Contents

# <!-- rdoc-file=lib/yaml/store.rb -->
# YAML::Store provides the same functionality as PStore, except it uses YAML to
# dump objects instead of Marshal.
#
# ## Example
#
#     require 'yaml/store'
#
#     Person = Struct.new :first_name, :last_name
#
#     people = [Person.new("Bob", "Smith"), Person.new("Mary", "Johnson")]
#
#     store = YAML::Store.new "test.store"
#
#     store.transaction do
#       store["people"] = people
#       store["greeting"] = { "hello" => "world" }
#     end
#
# After running the above code, the contents of "test.store" will be:
#
#     ---
#     people:
#     - !ruby/struct:Person
#       first_name: Bob
#       last_name: Smith
#     - !ruby/struct:Person
#       first_name: Mary
#       last_name: Johnson
#     greeting:
#       hello: world
#
class Psych::Store < ::PStore
  # <!--
  #   rdoc-file=lib/yaml/store.rb
  #   - initialize( file_name, yaml_opts = {} )
  #   - initialize( file_name, thread_safe = false, yaml_opts = {} )
  # -->
  # Creates a new YAML::Store object, which will store data in `file_name`. If the
  # file does not already exist, it will be created.
  #
  # YAML::Store objects are always reentrant. But if *thread_safe* is set to true,
  # then it will become thread-safe at the cost of a minor performance hit.
  #
  # Options passed in through `yaml_opts` will be used when converting the store
  # to YAML via Hash#to_yaml().
  #
  def initialize: (*untyped o) -> Psych::Store

  def dump: (untyped table) -> String

  def empty_marshal_checksum: () -> String

  def empty_marshal_data: () -> String

  def load: (String) -> untyped

  def marshal_dump_supports_canonical_option?: () -> ::FalseClass
end

Version data entries

19 entries across 19 versions & 1 rubygems

Version Path
rbs-3.6.0.dev.1 stdlib/psych/0/store.rbs
rbs-3.5.3 stdlib/psych/0/store.rbs
rbs-3.5.2 stdlib/psych/0/store.rbs
rbs-3.5.1 stdlib/psych/0/store.rbs
rbs-3.5.1.pre.1 stdlib/psych/0/store.rbs
rbs-3.5.0 stdlib/psych/0/store.rbs
rbs-3.5.0.pre.2 stdlib/psych/0/store.rbs
rbs-3.5.0.pre.1 stdlib/psych/0/store.rbs
rbs-3.4.4 stdlib/psych/0/store.rbs
rbs-3.4.3 stdlib/psych/0/store.rbs
rbs-3.4.2 stdlib/psych/0/store.rbs
rbs-3.4.1 stdlib/psych/0/store.rbs
rbs-3.4.0 stdlib/psych/0/store.rbs
rbs-3.4.0.pre.1 stdlib/psych/0/store.rbs
rbs-3.3.2 stdlib/psych/0/store.rbs
rbs-3.3.1 stdlib/psych/0/store.rbs
rbs-3.3.0 stdlib/psych/0/store.rbs
rbs-3.3.0.pre.2 stdlib/psych/0/store.rbs
rbs-3.3.0.pre.1 stdlib/psych/0/store.rbs