doomemacs/modules/lang/ruby/packages.el

37 lines
919 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 :pin "732331b99a")
(package! yard-mode :pin "ba74a47463")
2017-02-19 18:57:16 -05:00
;; 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"))