vote up 1 vote down star

This is probably a really silly question bu tI can't seem to find an answer since I'm apparently failing on keywords.

You know how you can run commands from the commandline in linux if you put a line on the top of your .rb file so you don't have to type ruby myfile.rb all the time and can just do ./myfile.rb ? Is it possible to have the same thing on a windows environment? I use git bash as my shell most of the time and have a lot of cygwin binaries installed. It's just that the general method is to put that line on top and then chmod the file, which isn't really an option.

flag

39% accept rate

2 Answers

vote up 2 vote down check

Yes, you can:

assoc .rb=RubyScript
ftype RubyScript=ruby %1 %*

After that you can simply call your ruby script like an executable program.

If you also want to be able to drop the .rb file extension, then you need to include .rb in the PATHEXT environment variable.

link|flag
1  
BTW, this is nothing script interpreter specific. This is just the normal file association stuff that is also used to associate, say Word with .doc files. Which means you can also do it the same way you would with a document: just double click on a Ruby file, the dialog will pop up asking you what to do with the file, browse to ruby.exe and you're done. – Jörg W Mittag Nov 4 at 18:34
I just thought someone coming from Linux might be more comfortable with a command-line solution :-) – Johannes Rössel Nov 16 at 23:33
vote up 0 vote down

May be you need to define regular windows file association?

link|flag

Your Answer

Get an OpenID
or

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