I used 'uuidtools' gem in my controller this way:
def create require 'uuidtools' game = Game.new game.permalink = Base64.encode64(UUIDTools::UUID.random_create)[0..8] game.save redirect_to :controller => 'home', :action => 'index' end I get this error about the requiring of 'uuidtools':
no such file to load -- uuidtools (I added the gem to my gem file.)
How can I fix this?
Thanks,
Oded