summaryrefslogtreecommitdiff
path: root/lib/irb/helper_method/conf.rb
blob: 460f5ab78a7d37a5c4f6b9987d0abc668a5c782f (plain)
1
2
3
4
5
6
7
8
9
10
11
module IRB
  module HelperMethod
    class Conf < Base
      description "Returns the current context."

      def execute
        IRB.CurrentContext
      end
    end
  end
end