I wanted to use emacs-rails-reloaded. So, I installed it from github. However, when I do the bytecompile step, I get a warning about cl package being required at runtime. So, I added the following to my .emacs file.
(require 'cl)
However, the warning still persists. My complete .emacs file is as follows:
(add-to-list 'load-path "~/.emacs.d/plugins")
(setq load-path (cons (expand-file-name "~/.emacs.d/emacs-rails-reloaded") load-path))
(require 'snippet)
(require 'find-recursive)
(require 'cl)
(require 'inf-ruby)
(autoload 'inf-ruby "inf-ruby" "Run an inferior Ruby process" t)
(autoload 'inf-ruby-setup-keybindings "inf-ruby" "" t)
(eval-after-load 'ruby-mode
'(add-hook 'ruby-mode-hook 'inf-ruby-setup-keybindings))
(require 'rails-autoload)
(require 'color-theme)
(setq visible-bell t)
When I run M-x rails/console, I get a message saying 'Symbol's function definition is void: inferior-ruby-mode'. I had installed inf-ruby from github to solve that but it does not seem to be working. Please suggest.