nonsequitur/inf-ruby@fd8d392 -> nonsequitur/inf-ruby@e4ae089 pezra/rspec-mode@c4353a1 -> pezra/rspec-mode@9a2a9d2 arthurnn/minitest-emacs@6d9f623 -> arthurnn/minitest-emacs@97d7d17 asok/projectile-rails@228f631 -> asok/projectile-rails@0398d94
36 lines
919 B
EmacsLisp
36 lines
919 B
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ruby/packages.el
|
|
|
|
;; Major modes
|
|
(package! enh-ruby-mode :pin "732331b99a")
|
|
(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"))
|