Search Results

4
votes
4answers
277 views

Whats the best way to perform system tasks from Ruby on Rails?

I am building a small system administration web application (think Web-Min, but in RoR) and I need to be able to access system parameters from my Ruby code. For instance, I want to allow the user …
0
votes

Whats the best way to perform system tasks from Ruby on Rails?

One person suggested using something like result = %x[uptime] and pointed me to this very …