1
vote
1answer
31 views

Rails: Including a Concern with a constant within a Concern

I have concern in which I store constants: module Group::Constants extend ActiveSupport::Concern MEMBERSHIP_STATUSES = %w(accepted invited requested rejected_by_group rejected_group) end ...
2
votes
2answers
82 views

Separation of Ruby on Rails application

I'm creating a b2b application. The application itself is done. Now i need a public website to inform customers about the product. The public website and the b2b application might share some data. ...
3
votes
3answers
320 views

Rails 3 project structure for UI Models and Data Models

This may be a really stupid question, but I do not have it clear in my mind as to how it is best to manage this so want to put it down here and see what is common practice. Coming from .net my web ...
3
votes
3answers
177 views

Does this Rails 3 Controller method make me look fat?

This is a new application, and I have an index method on a Search controller. This also serves as the home page for the application, and I'm trying to decide if I am headed down the wrong path from a ...
1
vote
2answers
270 views

Separation of concerns dilemma in Rails

I'm trying to make logging for my rails app and have some dilemmas over philosophy used in rails. My app has Link model which has_many Hits: class Link < AR::Base has_many :hits end class Hit ...
7
votes
3answers
6k views

RSpec in Rails: How to skip a before_filter?

I am trying to test my controller and maintain separation of concerns. The first concern is "Who is able to execute which action?" I am using authlogic for authentication and be9's acl9 for ...
6
votes
5answers
2k views

Ruby on Rails with Repository Pattern?

After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a little rusty. ASP.Net MVC tutorials recomment hiding data layer implementation with the repository ...