I'm trying to use a Rails messaging gem called "Carrier" written by a guy @stanislaw who seems to have a profile on StackOverflow
According to the ReadMe, the installation of his gem requires this command
rake carrier:install:migrations
However, when I tried it, I got rake aborted
rake aborted!
Don't know how to build task 'carrier:install:migrations'
Anyone have any experience with this gem?
Routes.rb (by request from comment below)
DeviseMessage::Application.routes.draw do
root :to => "home#index"
devise_for :users
resources :users, :only => :show
mount Carrier::Engine => "/carrier"