1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00
pry--pry/lib/pry/commands/reload_code.rb
John Mair 38e49b16d3 renamed reload-method to reload-code and extended functionality
Should now be able to reload any valid code object, including: methods, modules, commands, procs, etc
2013-01-05 20:33:27 +01:00

35 lines
981 B
Ruby

class Pry
class Command::ReloadCode < Pry::ClassCommand
match 'reload-code'
group 'Misc'
description 'Reload the source file that contains the specified code object'
def process
code_object = Pry::CodeObject.lookup(obj_name, target, _pry_)
check_for_reloadability(code_object)
reload_code_object(code_object)
end
private
def reload_code_object(code_object)
load code_object.source_file
output.puts "#{code_object} was reloaded!"
end
def obj_name
@obj_name ||= args.empty? ? nil : args.join(" ")
end
def check_for_reloadability(code_object)
if !code_object
raise CommandError, "Cannot locate #{obj_name}!"
elsif !File.exists?(code_object.source_file)
raise CommandError, "Cannot reload #{code_object} as it has no associated file on disk. File found was: #{code_object.source_file}"
end
end
end
Pry::Commands.add_command(Pry::Command::ReloadCode)
end