Search Results

4
votes
4answers
278 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
3answers
49 views

How should I persist order data over time without tying it to underlying product pricing data that is subject to change?

I have an application that processes and stores orders. Each order is composed of line items that have various things like pricing, sizing, colors, etc. My question is how do I persist that data …
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 …