arthurnn/minitest-emacs@97d7d17 -> arthurnn/minitest-emacs@ddd152c
asok/projectile-rails@0398d94 -> asok/projectile-rails@11980b2
We're also transitioning from abbreviated SHA1 hashes to full ones. See
45cdfb125
for why.
36 lines
1.3 KiB
EmacsLisp
36 lines
1.3 KiB
EmacsLisp
;; -*- no-byte-compile: t; -*-
|
|
;;; lang/ruby/packages.el
|
|
|
|
;; Major modes
|
|
(package! ruby-mode :built-in t)
|
|
(package! yard-mode :pin "ba74a47463b0320ae152bd42a7dd7aeecd7b5748")
|
|
|
|
;; REPL
|
|
(package! inf-ruby :pin "41e5ed3a886fca56990486f1987bb3bae0dbd54b")
|
|
(when (featurep! :completion company)
|
|
(package! company-inf-ruby :pin "fe3e4863bc971fbb81edad447efad5795ead1b17"))
|
|
|
|
;; Programming environment
|
|
(package! rubocop :pin "03bf15558a6eb65e4f74000cab29412efd46660e")
|
|
(package! robe :pin "68503b32bb3a005787ecb7a7fdeb3bb4a2317e2b")
|
|
|
|
;; Project tools
|
|
(package! bundler :pin "43efb6be4ed118b06d787ce7fbcffd68a31732a7")
|
|
(package! rake :pin "9c204334b03b4e899fadae6e59c20cf105404128")
|
|
|
|
;; Environment management
|
|
(when (featurep! +rbenv)
|
|
(package! rbenv :pin "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1"))
|
|
(when (featurep! +rvm)
|
|
(package! rvm :pin "134497bc460990c71ab8fa75431156e62c17da2d"))
|
|
(when (featurep! +chruby)
|
|
(package! chruby :pin "42bc6d521f832eca8e2ba210f30d03ad5529788f"))
|
|
|
|
;; Testing frameworks
|
|
(package! rspec-mode :pin "9a2a9d2935ae17b8570485bdea7c347533b464f6")
|
|
(package! minitest :pin "ddd152c990a528ad09a696bfad23afa4330ea4d7")
|
|
|
|
;; Rails
|
|
(when (featurep! +rails)
|
|
(package! projectile-rails :pin "11980b2bcb99208888856a9b8666ff329b6f0142")
|
|
(package! inflections :pin "e4f1372cf22e811faca52fc86bdd5d817498a4d8"))
|