Tagged Questions

4
votes
6answers
754 views

Do you find convention over configuration good or bad?

I did a fair amount of experimenting with Ruby on Rails and its convention over configuration, which gave me a lot of functionality automatically. But later I found that I wasn't sure I like the ...
2
votes
1answer
139 views

Ruby on Rails Unit Testing

I'm currently writing unit tests for my Ruby on Rails application, and one of my models is a normal Ruby class for parsing XML files. I now wish to write unit tests for this class using a correct and ...
1
vote
2answers
20 views

in Rails where do you put your Sweepers?

Is there a convention in Rails to put Sweeper classes in a particular directory location? UPDATE: Since observers are put into app/models, I'm assuming sweepers are no different, as long as the name ...
1
vote
1answer
176 views

How Rails be configured to access a media resource that is not in its conventional directory location?

Let's say I have an image that does not reside in the normal location: {appname}/public/images/unconventional.gif But instead here: {appname}/unconventional.gif I understand this is a complete ...