3
votes
Variables in ruby method names
Matt and Maxim are both correct, but leave out a detail that might help you get your head around the #send syntax: In Ruby, calling a method is really sending a message. Softies on Rails …
2
votes
Creating a Backpack-like Calendar in Rails
I don't know if this suits the constraints of your problem, but have you looked at the Google Calendar API? I don't know whether …
1
vote
RoR: Best way to build ‘dashboard’ type page?
The controller should be responsible for retrieving the data you need to present (and, usually implicitly, passing it to the view). Build no HTML here.
The partials, of course, are where y …
-1
votes
Rails Plugin: Paperclip Question
I'd put a custom getter on Avatar.url that tests for a nil or zero-size URL, and replaces it with the default in that case.
…
1
vote
How to start facebook app?
I've seen pretty complete FB wrapper libraries for both PHP and Ruby. Which one you should choose really depends on which language/framework you're more comfortable with.
I will say that w …
2
votes
Ruby’s MySQL driver not finding required libraries
I had issues as well (on Mac OS X), and was just as frustrated that gem install mysql wasn't as simple as it used to be.
The short-sighted answer is that the mysql gem needs to …
3
votes
MYSQL Installation Troubles
The issue is that the MySQL gem builds native extensions and needs system-specific information about where to find certain libraries. You have to provide this on the command line.
Check ou …
0
votes
To use self. or not.. in Rails
A good guide on when to use which one:
If the method depends on any internal state of the object, or must know which instance of the object it is addressing, then DO NOT make it a cla …
1
vote
Can RoR deal with char(1) fields as “boolean” fields?
I'd probably attack it at the model level - when you load a row into a model instance, compute a boolean attribute based on the char. Add a getter for the virtual attribute that returns this value …
0
votes
Using ActiveRecord, is there a way to get the old values of a record during after_update
Idea 1: Wrap the update in a database transaction, so that if the update fails your Totals table isn't changed: …
4
votes
Running Rails and PHP on Dreamhost
In the Dreamhost control panel menu, go to "Manage Domains" under "Domains".
Add the domain example.com as a fully hosted domain, and keep the default settings. PHP is set up on fully host …
0
votes
How to get stories to work with restful_authentication and cucumber?
I don't have a lot of guidance to offer, just sympathy - I've spent a few hours recently dealing with the same problem. On the up side, it's how I learned RSpec.
One thing I did find is th …
1
vote
TDD/BDD in particular for a Rails application
I wouldn't drill that far down. In fact, I don't usually test my migrations, and it's certainly not worth your time (in general) to test getters and setters. Stick to tests that teach you about t …
