Sha256: 7b0916957efbdb79f047dcbf871091a5aff16e8fb20c11d7d96239e7c4d90e00

Contents?: true

Size: 939 Bytes

Versions: 9

Compression:

Stored size: 939 Bytes

Contents

# frozen_string_literal: true
#
#   irb/ext/cb.rb -
#   	by Keiju ISHITSUKA(keiju@ruby-lang.org)
#

module IRB # :nodoc:
  class Context

    # Inherited from +TOPLEVEL_BINDING+.
    def home_workspace
      if defined? @home_workspace
        @home_workspace
      else
        @home_workspace = workspace
      end
    end

    # Changes the current workspace to given object or binding.
    #
    # If the optional argument is omitted, the workspace will be
    # #home_workspace which is inherited from +TOPLEVEL_BINDING+ or the main
    # object, <code>IRB.conf[:MAIN_CONTEXT]</code> when irb was initialized.
    #
    # See IRB::WorkSpace.new for more information.
    def change_workspace(*_main)
      if _main.empty?
        replace_workspace(home_workspace)
        return main
      end

      workspace = WorkSpace.new(_main[0])
      replace_workspace(workspace)
      workspace.load_helper_methods_to_main
    end
  end
end

Version data entries

9 entries across 9 versions & 3 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/irb-1.14.0/lib/irb/ext/change-ws.rb
irb-1.14.3 lib/irb/ext/change-ws.rb
irb-1.14.2 lib/irb/ext/change-ws.rb
irb-1.14.1 lib/irb/ext/change-ws.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/irb-1.13.2/lib/irb/ext/change-ws.rb
irb-1.14.0 lib/irb/ext/change-ws.rb
irb-1.13.2 lib/irb/ext/change-ws.rb
irb-1.13.1 lib/irb/ext/change-ws.rb
irb-1.13.0 lib/irb/ext/change-ws.rb