Search Results

2
votes

Performing AJAX delete operations restfully in rails

From my code: <%= link_to_remote "Delete", :url => post_url(post), :method => :delete %> …
2
votes

I get “Missing these required gems”, but gems are installed

This railswiki-entry gives lots of insight into handling of multiple gem-repositories. Maybe you find a clue there that solves your problem. Hope it helps …
0
votes

Why am I getting this Cache-money error?

I had a similar issue after updating to Rails 2.3. I still had the line config.action_controller.session_store = :active_record_store in my environment.rb I got i …
0
votes

AR.to_json Works in Console, Fails in Browser

Whenever code in tests or the console behaves different from production environment (which is a guess... you might be running your site in development mode), this calls for a load order issue. In p …
0
votes

Ruby On Rails Relationships - One to Many

class Politician < ActiveRecord::Base has_and_belongs_to_many :tasks end class Task < ActiveRecord::Base has_and_belongs_to_many :politicians end What you need …
1
vote

rails: how to not include some db attributes in model

You'd have to specify the columns explicitly via the find-option :select. However, storing models in the session is discouraged. How about storing just the object-id in the session, and holding the …
2
votes

Rails design/coding question

In ActiveRecord::Base there is a feature called scopes. A query being issued in a certain scope will be combined with this scope's find-options ie.: class Person < ActiveRecord …
2
votes

Optimizing a Ruby on Rails Project

In your environment.rb - File: # Skip frameworks you're not going to use. To use Rails without a database, # you must remove the Active Record framework. config.frameworks -= [ : …
2
votes

Overriding/Modifying Rails Class (ActiveResource)

First of all, this is an issue you should report to Rails' bugtracker: https://rails.lighthouseapp.com/projects …