Search Results

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 …
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 …
5
votes

What is the difference between include and require in Ruby?

Ruby require is more like "include" in other languages (such as C). This tells Ruby that you want to bring in the contents of another file. Ruby include is an OO inheritance mechanism used …
-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 …
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 …
0
votes

Designing a poker parser in Ruby

I'd recommend the book Refactoring by Martin Fowler (available in both dead-tree and electronic formats, IIRC). He covers object-oriented remedies for exactly the design problems you're a …