inherited-resources

RESTful nested conventional routing

Hi, I have the model: User -1---n- Transaction(amount,description, date) User -1---n- TransactionImport -1---n- TransactonImportField(name,value) (personal expense tracking app). What I want to achieve is this: User opens URL and pastes the CSV with the list of transactions. User submits it. System extracts data from CSV into Tra...

inherited_resources and cancan conflict

Hi, There are conflict with inherited_resources and Ryan Bates's cancan gem. I have some simple controller class IssuesController < InheritedResources::Base respond_to :html load_and_authorize_resource def tag @issues = Issue.tagged_with(params[:tag]).recent.paginate(:page => params[:page]) end protected def collec...