Reputation: 95
I'm very new to ruby
and I can run ruby scripts
on command line easily, but I want to output my script to a browser, not just using the command line.
Your help will be much appreciated, thanks.
Upvotes: 1
Views: 13882
Reputation: 3818
I'd recommend either Passenger or Unicorn, both of which are extremely popular in production environments. Passenger is typically easier to setup.
See this blog post: "Install RVM, Passenger, Nginx and Rails 3 on Ubuntu Lucid Lynx". You can use WEBrick/Thin for development perhaps.
Upvotes: 2
Reputation: 51717
Passenger is probably the easiest way to run Rails applications.
Upvotes: 6