Sha256: ec55cd95c41d795d7acf4d88b9433cad8d9dc17a560aa89fb868ad3cd848e668
Contents?: true
Size: 566 Bytes
Versions: 238
Compression:
Stored size: 566 Bytes
Contents
class Pry class Command::ImportSet < Pry::ClassCommand match 'import-set' group 'Commands' # TODO: Provide a better description with examples and a general conception # of this command. description 'Import a Pry command set.' banner <<-'BANNER' Import a Pry command set. BANNER def process(command_set_name) raise CommandError, "Provide a command set name" if command_set.nil? set = target.eval(arg_string) _pry_.commands.import set end end Pry::Commands.add_command(Pry::Command::ImportSet) end
Version data entries
238 entries across 231 versions & 39 rubygems