Skip to content

Commit

Permalink
renamed reload-method to reload-code and extended functionality
Browse files Browse the repository at this point in the history
Should now be able to reload any valid code object, including: methods, modules, commands, procs, etc
  • Loading branch information
banister committed Jan 5, 2013
1 parent 80e612b commit 38e49b1
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 23 deletions.
35 changes: 35 additions & 0 deletions lib/pry/commands/reload_code.rb
@@ -0,0 +1,35 @@
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
23 changes: 0 additions & 23 deletions lib/pry/commands/reload_method.rb

This file was deleted.

0 comments on commit 38e49b1

Please sign in to comment.