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 am starting out with Ruby on Rails. I am currently going through a tutorial where it says that I have to run a .rb file from IRB and that that will create a .xml file in my current directory. My question is how do I run a .rb file in IRB? And do I have to be in the directory where this .rb file lives when I run it in IRB? I tried the following: just typing "irb" on the command line in the directory of the file. That starts an IRB session as far as I understand. Then I typed "irb "filename.rb"" which went through but didn't create anything in the current directory but at least it didn't give any errors. I also tried a whole bunch of other stuff that plain gave me errors. So I don't think I can solve this myself and googling the matter didn't help at all. Please, help. Thank you. I am running Leopard.

share|improve this question
Is filename.rb a model? – Sergey Kishenin May 27 '11 at 8:50

1 Answer

You can "run" a file in irb by just requiring or loading it.

$ irb
>> load './filename.rb'

To change your current working directory within irb, you can use FileUtils:

>> require 'fileutils'
>> FileUtils.pwd # prints working directory
>> FileUtils.cd '/path/to/somewhere' # changes the directory
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.