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 …
4
votes
3answers
613 views
Whats the best way to work with Github and multiple computers?
I am developing some school grading software and decided to use Github to host the project. After building some code on my Ubuntu box I pushed it to Github and then cloned it down to my MacBook Pr …
1
vote
3answers
445 views
What is the best way to display spreadsheet data in Ruby on Rails?
I am looking for a way to edit data and have values dynamically calculated (i.e. totals, averages, etc.) My application is a web based gradebook system for teachers and one of the big challenges i …
0
votes
1answer
76 views
How do you use errors.add_to_base outside of the validates_ or validate_ model methods?
I have a Course class that has many WeightingScales and I am trying to get the WeightingScales validation to propagate through the system. The short of the problem is that the following code works …
0
votes
1answer
13 views
Mapping a polymorphic relationship onto 2 models simultaneously
I need to relate a Comments model with two ids at the same time but can't figure out how. Here' my situation. I am building an on-line …
0
votes
0answers
13 views
Why does my session expire when using PerformanceTest and not IntegrationTest?
OK, I am writing performance tests and am having trouble getting my session to persist like it does in integration tests. As I understand it, PerformanceTest is a child of IntegrationTest and any …
0
votes
3answers
48 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
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 …
0
votes
What is the best way to display spreadsheet data in Ruby on Rails?
After searching for something lightweight and easy to use I have given up and am writing my own little bits of JavaScript to do my bidding for me. Its not perfect but it seems to work pretty well, …
