Tagged Questions

0
votes
4answers
34 views

# TODO in rails

I had read through a rails book and once found we can add # TODO: and some # stuff in codes, so we can you some rake cmd to look back. My problems is I can't find where are those …
0
votes
3answers
27 views

Instant variable self vs @

I saw a code class Person def initialize(age) @age = age end def age @age end def age_difference_with(other_person) (self.age - other_person.age).abs end …
1
vote
1answer
35 views

Sort collection of object in rails ?

I know I can use something like User.sort {|a, b| a.attribute <=> b.attribute} or User.find and order, but is it a way like comparable interface in Java, so every time I called …
0
votes
1answer
18 views

How to provide has_many through association through 3 models?

I hope someone has already experienced this. Please help me, how can i solve this problem: class Article < ActiveRecord::Base belongs_to :author belongs_to :publisher has …
0
votes
1answer
16 views

html tidy and rails apps - erb or rthml files. Ruby alternative?

Hi. I just installed HTML Tidy plugin for eclipse. I added the html.erb file type and now it will do its magic on my erb files. However it puts in the title tag and changes a lot o …
0
votes
1answer
11 views

How do I pass the HTTP username from Apache to Mongrel/Rails?

The goal: running a Rails application on Mongrels, allowing access through Apache after doing basic HTTP Authentication The problem: reading the supplied username from within Rail …