On Jul 28, 2009, at 08:40 , Reid Thompson wrote:

> How can i work around this error?  Is it possible to force ruport to  
> use
> 1.5.0?
>
> can't activate fastercsv (= 1.2.3, runtime) for ["ruport-1.6.1"],  
> already activated fastercsv-1.5.0 for [] (Gem::LoadError)


that latter "for []" doesn't help, or it is (poorly) stating that YOU  
activated fastercsv. I'm gonna guess the latter. So, either activate  
it with a version specifier that matches:

   gem 'fastercsv', '= 1.2.3'

or activate ruport before you require fastercsv.

We really need to stop using '= x.y.z' because of problems like this.  
In this case tho, it looks like ruport is falling behind on  
maintenance (or you're using an old version, which is another way for  
you to fix this if so)