I installed nkallen's cache-money gem per the github readme. I run into RecordNotFound exceptions during my tests. If I comment out the contents of config/initializers/cache-money.rb, the tests run fine. My cache-money.rb file is identical to that on the github instructions.
Here is the contents of my config/memcached.yml: development: ttl: 604800 namespace: cache-#{RAILS_ENV} sessions: false debug: true servers: localhost:11211
test: ttl: 604800 namespace: cache-#{RAILS_ENV} sessions: false debug: true servers: localhost:11211
production: ttl: 604800 namespace: cache-#{RAILS_ENV} sessions: false debug: false servers: localhost:11211
I can't find any other documentation on how to configuration or install cache-money. I'd appreciate any insight or help to debugging this. Thanks in advance!