2015-06-10 16:44:30 +00:00
|
|
|
#+TITLE: Ruby contribution layer for Spacemacs
|
|
|
|
|
2015-07-04 03:33:13 +00:00
|
|
|
[[file:img/ruby.png]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Table of Contents :TOC@4:
|
|
|
|
- [[#description][Description]]
|
|
|
|
- [[#install][Install]]
|
2015-09-28 06:05:18 +00:00
|
|
|
- [[#prerequisites][Prerequisites]]
|
|
|
|
- [[#ruby-version-management][Ruby version management]]
|
2015-06-10 16:44:30 +00:00
|
|
|
- [[#key-bindings][Key bindings]]
|
2015-09-28 06:05:18 +00:00
|
|
|
- [[#ruby-enh-ruby-mode-robe-inf-ruby-ruby-tools][Ruby (enh-ruby-mode, robe, inf-ruby, ruby-tools)]]
|
|
|
|
- [[#ruby-test-mode][ruby-test-mode]]
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
* Description
|
|
|
|
|
|
|
|
This layer aims at providing support for the Ruby language using
|
|
|
|
[[https://github.com/zenspider/enhanced-ruby-mode][enh-ruby-mode]] and [[https://github.com/dgutov/robe][robe-mode]].
|
|
|
|
|
|
|
|
* Install
|
|
|
|
|
|
|
|
To use this contribution add it to your =~/.spacemacs=
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
|
|
|
(setq-default dotspacemacs-configuration-layers '(ruby))
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
** Prerequisites
|
|
|
|
|
|
|
|
Some of the advanced features supported by this layer depend on external gems
|
|
|
|
that need to be installed in the context of your project (see below for guidance
|
|
|
|
based on your version manager):
|
|
|
|
|
2015-06-10 21:16:01 +00:00
|
|
|
- =pry= and =pry-doc= are required for *jump to definition* and *code documentation* (=robe-mode=)
|
|
|
|
- =ruby_parser= is required for *goto-step_definition* in =feature-mode=
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
You can install the gems in the context of your current project by
|
|
|
|
adding them to the =Gemfile=, e.g.:
|
|
|
|
|
|
|
|
#+BEGIN_SRC ruby
|
|
|
|
gem 'pry'
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
or on the command line (please refer to your ruby version manager
|
|
|
|
specific documentation for details and caveats):
|
|
|
|
|
|
|
|
#+BEGIN_SRC sh
|
2015-06-10 21:16:01 +00:00
|
|
|
gem install pry
|
2015-06-10 16:44:30 +00:00
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
** Ruby version management
|
|
|
|
|
|
|
|
This layer supports the use of [[https://rvm.io/][RVM]] and [[https://github.com/sstephenson/rbenv][Rbenv]].
|
|
|
|
To enable it, set the =ruby-version-manager= var in your =~/.spacemacs=:
|
|
|
|
|
|
|
|
#+BEGIN_SRC emacs-lisp
|
2015-09-28 06:05:18 +00:00
|
|
|
(defun dotspacemacs/user-init ()
|
2015-06-10 16:44:30 +00:00
|
|
|
(setq-default ruby-version-manager 'rbenv)
|
|
|
|
)
|
|
|
|
#+END_SRC
|
|
|
|
|
|
|
|
Possible values are =rbenv= and =rvm=.
|
|
|
|
|
|
|
|
* Key bindings
|
|
|
|
|
2015-07-29 09:58:47 +00:00
|
|
|
** Ruby (enh-ruby-mode, robe, inf-ruby, ruby-tools)
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
| Key binding | Description |
|
|
|
|
|-------------+---------------------------------------------|
|
|
|
|
| ~SPC m g g~ | go to definition (robe-jump) |
|
|
|
|
| ~SPC m h d~ | go to Documentation |
|
|
|
|
| ~SPC m s f~ | send function definition |
|
|
|
|
| ~SPC m s F~ | send function definition and switch to REPL |
|
|
|
|
| ~SPC m s i~ | start REPL |
|
|
|
|
| ~SPC m s r~ | send region |
|
|
|
|
| ~SPC m s R~ | send region and switch to REPL |
|
|
|
|
| ~SPC m s s~ | switch to REPL |
|
2015-07-29 09:58:47 +00:00
|
|
|
| ~SPC m x '~ | Change symbol or " string to ' |
|
|
|
|
| ~SPC m x "~ | Change symbol or ' string to " |
|
|
|
|
| ~SPC m x :~ | Change string to symbol |
|
2015-07-05 07:38:41 +00:00
|
|
|
| ~%~ | [[https://github.com/redguardtoo/evil-matchit][evil-matchit]] jumps between blocks |
|
2015-06-10 16:44:30 +00:00
|
|
|
|
|
|
|
** ruby-test-mode
|
|
|
|
|
|
|
|
ruby-test-mode comes bundled with spacemacs, but this contribution adds
|
|
|
|
a couple of useful keybindings:
|
|
|
|
|
|
|
|
| Key binding | Description |
|
|
|
|
|-------------+---------------------|
|
|
|
|
| ~SPC m t b~ | run test file |
|
|
|
|
| ~SPC m t t~ | run test at pointer |
|