File: object.rb

package info (click to toggle)
ruby-commander 5.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 364 kB
  • sloc: ruby: 1,969; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 122 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
# frozen_string_literal: true

class Object
  ##
  # Return the current binding.

  def get_binding
    binding
  end
end