Search Results

1
vote
4answers
706 views

Rails model with foreign_key and link table

I am trying to create a model for a ruby on rails project that builds relationships between different words. Think of it as a dictionary where the "Links" between two words shows that they can be u …
4
votes
2answers
300 views

Best Practices for using partials in Rails

In keeping with the DRY-principle I try to use partials as soon as I am repeating a particular pattern more than once or twice. As a result, some of my views consist of ten or more different partia …
2
votes

using layouts for menus in rails

Yes, the straight forward way to do it is to include your navigation in your application layout. If you need different layouts, I think it's best to include your navigation via a partial. If you ar …