Andersbakken/rtags@db39790fda -> Andersbakken/rtags@9e442e5b30 ananthakumaran/tide@b93e555858 -> ananthakumaran/tide@29475d9eee asok/projectile-rails@772f4766b5 -> asok/projectile-rails@701784df7b brotzeit/rustic@6eec971387 -> brotzeit/rustic@39423d1cf4 dgutov/robe@11207bd549 -> dgutov/robe@b9d5ab549f emacs-lsp/emacs-ccls@675a5704c1 -> emacs-lsp/emacs-ccls@29d231590f emacs-lsp/lsp-haskell@485c1148ce -> emacs-lsp/lsp-haskell@3249cde75f emacs-typescript/typescript.el@88f317f0b6 -> emacs-typescript/typescript.el@4fcb459481 emacsmirror/cmake-mode@d5d77de8c4 -> emacsmirror/cmake-mode@6ce5633144 haskell/haskell-mode@90503413f4 -> haskell/haskell-mode@a34ccdc54b jart/disaster@10a785facc -> jart/disaster@0c13bd244c nonsequitur/inf-ruby@dbf4386bac -> nonsequitur/inf-ruby@0ce7f4049e pd/yard-mode.el@ba74a47463 -> pd/yard-mode.el@ef3426ff55 pezra/rspec-mode@4215ff1f2d -> pezra/rspec-mode@62853a428b senny/rvm.el@c1f2642434 -> senny/rvm.el@e1e83b5466 - (#7070) lsp-haskell update should address lag and errors in haskell-mode when using LSP. Ref: #7070
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 "ef3426ff55b6e91d581c8da12f5f64855d932527")
|
|
|
|
;; REPL
|
|
(package! inf-ruby :pin "0ce7f4049edcae188b4643b3163e5301f9ef09cc")
|
|
(when (modulep! :completion company)
|
|
(package! company-inf-ruby :pin "fe3e4863bc971fbb81edad447efad5795ead1b17"))
|
|
|
|
;; Programming environment
|
|
(package! rubocop :pin "f5fd18aa810c3d3269188cbbd731ddc09006f8f5")
|
|
(package! robe :pin "b9d5ab549f73c5587415f538303fa76e0833354d")
|
|
|
|
;; Project tools
|
|
(package! bundler :pin "43efb6be4ed118b06d787ce7fbcffd68a31732a7")
|
|
(package! rake :pin "452ea0caca33376487103c64177c295ed2960cca")
|
|
|
|
;; Environment management
|
|
(when (modulep! +rbenv)
|
|
(package! rbenv :pin "2ea1a5bdc1266caef1dd77700f2c8f42429b03f1"))
|
|
(when (modulep! +rvm)
|
|
(package! rvm :pin "e1e83b5466c132c066142ac63729ba833c530c83"))
|
|
(when (modulep! +chruby)
|
|
(package! chruby :pin "42bc6d521f832eca8e2ba210f30d03ad5529788f"))
|
|
|
|
;; Testing frameworks
|
|
(package! rspec-mode :pin "62853a428b416e6a5fd3d8f57ff83a1798188a3f")
|
|
(package! minitest :pin "ddd152c990a528ad09a696bfad23afa4330ea4d7")
|
|
|
|
;; Rails
|
|
(when (modulep! +rails)
|
|
(package! projectile-rails :pin "701784df7befe17b861f1b53fe9cbc59d0b94b9f")
|
|
(package! inflections :pin "55caa66a7cc6e0b1a76143fd40eff38416928941"))
|