How can I configure a Netbeans Ruby project so that it does not run a Ruby interpreter (a Ruby “platform”), but starts up rackup?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I’ve copied rack gem into [project_path]/vendor/rack-1.0.0
Then set run configuration as follows:
Main script: rack-1.0.0/bin/rackup
Hit ‘Browse…’ button to choose the right file
Arguments: -p 3004
Replace 3004 by the needed port
Working directory: [project_path]
Replace by the actual project path
And it works perfectly.