doomemacs/modules/lang/ruby/packages.el

31 lines
539 B
EmacsLisp
Raw Normal View History

2017-02-19 18:57:16 -05:00
;; -*- no-byte-compile: t; -*-
;;; lang/ruby/packages.el
;; Major modes
(package! enh-ruby-mode)
(package! yard-mode)
2017-02-19 18:57:16 -05:00
;; REPL
(package! inf-ruby)
(when (featurep! :completion company)
(package! company-inf-ruby))
;; Programming environment
(package! rubocop)
(unless (featurep! +lsp)
(package! robe))
;; Project tools
(package! bundler)
(package! rake)
;; Environment management
(when (featurep! +rbenv)
(package! rbenv))
(when (featurep! +rvm)
(package! rvm))
;; Testing frameworks
(package! rspec-mode)
(package! minitest)