Sha256: f205226e1ef43d4926ef21acc1789991a7ab0b66b72579598b1dc84c287fc816
Contents?: true
Size: 304 Bytes
Versions: 19
Compression:
Stored size: 304 Bytes
Contents
# frozen_string_literal: true Pry::Commands.create_command 'disasm' do description 'Pry plugin that displays YARV bytecode for a method or expression. ' command_options argument_required: true group 'Context' def process expr = target.eval(arg_string) PryDisasm.process(expr) end end
Version data entries
19 entries across 19 versions & 1 rubygems