closer changed the topic of #ruby-core to: check the latest release candidate for 1.9.1 release ftp.ruby-lang.org:/home/yugui/ruby-1.9.1-r26021+1.tar.bz2
<zzak>
[Shannon, irc.freenode.net] brent__: Since you're using rbenv you may have to `rbenv rehash`.
<zzak>
[Shannon, irc.freenode.net] ?rbenv
<zzak>
[Butler IRC Bot, Version 0.1.0, irc.freenode.net] Missing command under rbenv? Did you try `rbenv rehash`?
<zzak>
[Brent, irc.freenode.net] lol
<zzak>
[Brent, irc.freenode.net] why would i need to do 'gem-install mines'?
<zzak>
[Brent, irc.freenode.net] it's not a gem, just a .rb file
<zzak>
[Shannon, irc.freenode.net] brent__: I assumed it's a gem. If it's a file the problem is likely that it's not in your $LOAD_PATH.
<zzak>
[Shannon, irc.freenode.net] Or not accessible from a dir that is, rather.
<zzak>
[Shannon, irc.freenode.net] brent__: Familiar with the #require_relative method?
<zzak>
[dea, irc.freenode.net] brent__: You could say `require './mines'` or `require_relative 'mines'`, but it's better to get the necessary directory into $LOAD_PATH so that you can just say what you've got now.
<zzak>
[Brent, irc.freenode.net] i have used it in the past
<zzak>
[Shannon, irc.freenode.net] brent__: In Ruby 1.8 "." was in the $LOAD_PATH.
<zzak>
[Brent, irc.freenode.net] Ox0dea: the directory may be changing for my files, does it still make sense to chang ethe $LOAD_path?
<zzak>
[Shannon, irc.freenode.net] brent__: Say more about what you're doing.
<zzak>
[Brent, irc.freenode.net] right now i'm just trying to learn some extra pry functionality
<zzak>
[Shannon, irc.freenode.net] Take a look at: $LOAD_PATH
<zzak>
[Brent, irc.freenode.net] not specifically doing anything, i suppose. Just trying to learn how to use pry