mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
6 lines
282 B
EmacsLisp
6 lines
282 B
EmacsLisp
(when (require 'eproject nil 'noerror)
|
|
(define-project-type ruby (generic)
|
|
(or (look-for "Rakefile") (look-for "Gemfile") (look-for "config.ru")
|
|
(look-for "\.gemspec$") (look-for "Capfile"))
|
|
:irrelevant-files ("vendor/bundle/" "coverage/" "^#.*#$" "\.DS_Store")))
|