1
0
Fork 0
mirror of https://github.com/pry/pry.git synced 2022-11-09 12:35:05 -05:00

converted plugin load failtures from exceptions to warnings, bump to version 0.9.3pre1

This commit is contained in:
John Mair 2011-07-25 19:43:34 +12:00
parent c3ba7f5743
commit ef7ebbc61e
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class Pry
begin
require gem_name
rescue LoadError
raise PluginNotFound, "The plugin '#{gem_name}' was not found!"
$stderr.puts "Warning: The plugin '#{gem_name}' was not found!"
end
self.active = true
self.enabled = true

View file

@ -1,3 +1,3 @@
class Pry
VERSION = "0.9.2"
VERSION = "0.9.3pre1"
end