Skip to content

Commit

Permalink
version 0.6.0, fixed file require ordering issue
Browse files Browse the repository at this point in the history
  • Loading branch information
banister committed Feb 21, 2011
1 parent c80f347 commit c0d12d1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bin/pry
Expand Up @@ -51,7 +51,7 @@ See: `https://github.com/banister` for more information.
puts opts
exit
end
end.permute!
end.parse!

rcpath = File.expand_path("~/.pryrc")

Expand Down
14 changes: 10 additions & 4 deletions lib/pry.rb
Expand Up @@ -5,7 +5,13 @@

require "method_source"
require "readline"

Dir["#{direc}/pry/*.rb"].each do |file|
require file
end
require "#{direc}/pry/version"
require "#{direc}/pry/hooks"
require "#{direc}/pry/print"
require "#{direc}/pry/command_base"
require "#{direc}/pry/commands"
require "#{direc}/pry/prompts"
require "#{direc}/pry/completion"
require "#{direc}/pry/core_extensions"
require "#{direc}/pry/pry_class"
require "#{direc}/pry/pry_instance"
2 changes: 1 addition & 1 deletion lib/pry/version.rb
@@ -1,3 +1,3 @@
class Pry
VERSION = "0.5.9"
VERSION = "0.6.0"
end

0 comments on commit c0d12d1

Please sign in to comment.