Also: - Reorganizes some :lang modules' packages.el file. - Adds setuptools check in lang/python - Adds javac check in lang/java - Removes the depends-on! macro
30 lines
539 B
EmacsLisp
30 lines
539 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ruby/packages.el
|
|
|
|
;; Major modes
|
|
(package! enh-ruby-mode)
|
|
(package! yard-mode)
|
|
|
|
;; 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)
|