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

      def execute
        IRB.CurrentContext
      end
    end
  end
end