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
Ruby Deleting subdirectories that contain only a specific directory
This would do the job... however it doesn't take into consideration, that the it's own run could create new leaves
#!/usr/bin/env ruby
require 'fileutils'
def remove_leaves(dir=". …
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 …
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 …
