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
2answers
67 views

What is the best way to duplicate a calculation in Ruby & JavaScript?

I have a Ruby on Rails application and I need to duplicate some computations in both Ruby and JavaScript. Ruby is used in the server side but I also need to compute a students grade on the browser …
0
votes

Ruby on Rails Content Management Systems?

I have to agree with TimB. I implemented RadiantCMS when my company was first getting started and it worked great. However, it is focused on being simple to setup and use and is not a full featur …
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 …
6
votes

In Ruby on Rails, how do I format a date with the “th” suffix, as in, “Sun Oct 5th”?

Taking Patrick McKenzie's answer just a bit further, you could create a new file in your config/initializers directory called date_format.rb (or whatever you want) and put …