enh-ruby-mode's highlighter breaks when the buffer is unexpectedly reverted. This sacrifices its superior highlighting and indentation, but was too much trouble to maintain.
36 lines
909 B
EmacsLisp
36 lines
909 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ruby/packages.el
|
|
|
|
;; Major modes
|
|
(package! ruby-mode :built-in t)
|
|
(package! yard-mode :pin "ba74a47463")
|
|
|
|
;; REPL
|
|
(package! inf-ruby :pin "e4ae089218")
|
|
(when (featurep! :completion company)
|
|
(package! company-inf-ruby :pin "fe3e4863bc"))
|
|
|
|
;; Programming environment
|
|
(package! rubocop :pin "03bf15558a")
|
|
(package! robe :pin "8190cb7c7b")
|
|
|
|
;; Project tools
|
|
(package! bundler :pin "43efb6be4e")
|
|
(package! rake :pin "9c204334b0")
|
|
|
|
;; Environment management
|
|
(when (featurep! +rbenv)
|
|
(package! rbenv :pin "2ea1a5bdc1"))
|
|
(when (featurep! +rvm)
|
|
(package! rvm :pin "134497bc46"))
|
|
(when (featurep! +chruby)
|
|
(package! chruby :pin "42bc6d521f"))
|
|
|
|
;; Testing frameworks
|
|
(package! rspec-mode :pin "9a2a9d2935")
|
|
(package! minitest :pin "97d7d1760b")
|
|
|
|
;; Rails
|
|
(when (featurep! +rails)
|
|
(package! projectile-rails :pin "0398d940a2")
|
|
(package! inflections :pin "e4f1372cf2"))
|