In every directory that I run irb, I have a config/boot.rb file that needs to be required. It be great if this could be autoloaded when I enter irb, but I'm not sure how to refer to the directory that I opened irb in from the .irbc file.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
I would do:
|
|||
|
|
|
That should be your current directory:
If you want, you could just require it like this:
|
|||
|
|
|
You can get the current directory of the process with
|
|||
|
|
|
Just use
Bonus points if you bind it to a bash alias.
You won't be modifying your .irbrc this way—I'd imagine some people may find this to be a cleaner approach. |
|||
|
|