spacemacs/layers/+lang/ruby/README.org

176 lines
7.1 KiB
Org Mode
Raw Normal View History

#+TITLE: Ruby layer
2015-06-10 16:44:30 +00:00
[[file:img/ruby.png]]
2015-06-10 16:44:30 +00:00
2016-03-31 02:59:55 +00:00
* Table of Contents :TOC_4_gh:noexport:
- [[#description][Description]]
- [[#install][Install]]
- [[#prerequisites][Prerequisites]]
- [[#ruby-version-management][Ruby version management]]
- [[#test-runner][Test runner]]
- [[#key-bindings][Key bindings]]
- [[#ruby-enh-ruby-mode-robe-inf-ruby-ruby-tools][Ruby (enh-ruby-mode, robe, inf-ruby, ruby-tools)]]
- [[#bundler][Bundler]]
- [[#rubocop][RuboCop]]
- [[#tests][Tests]]
- [[#rspec-mode][RSpec-mode]]
- [[#ruby-test-mode][Ruby-test-mode]]
- [[#rake][Rake]]
2015-06-10 16:44:30 +00:00
* Description
2015-12-06 02:19:18 +00:00
This layer provides support for the Ruby language with the following feature:
- version manager (rbenv, rvm or chruby)
- integration with bundler
2015-12-06 02:19:18 +00:00
- test runner (ruby-test and rspec)
2016-02-29 19:24:52 +00:00
- rake runner
2015-12-06 02:19:18 +00:00
- linter (rubocop)
- interactive REPL and code navigation (robe)
2015-06-10 16:44:30 +00:00
* Install
To use this configuration layer, add it to your =~/.spacemacs=. You will need to
add =ruby= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
This layer supports two different Ruby modes: Emacs' built-in Ruby Mode and
[[https://github.com/zenspider/enhanced-ruby-mode][enh-ruby-mode]]. By default the built-in Ruby mode is enabled. To switch to the
=enh-ruby-mode= set =ruby-enable-enh-ruby-mode= to t:
#+BEGIN_SRC emacs-lisp
(defun dotspacemacs-configuration-layers ()
'((ruby :variables ruby-enable-enh-ruby-mode t)))
#+END_SRC
2015-06-10 16:44:30 +00:00
** 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):
- =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-09-08 23:03:42 +00:00
- =rubocop= is required for rubocop integration
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
gem install pry
2015-06-10 16:44:30 +00:00
#+END_SRC
** Ruby version management
This layer supports [[https://rvm.io/][RVM]], [[https://github.com/sstephenson/rbenv][Rbenv]], and [[https://github.com/postmodern/chruby][Chruby]]. You can choose the default version
manager by setting the variable =ruby-version-manager= in your dotfile, for
example:
2015-06-10 16:44:30 +00:00
#+BEGIN_SRC emacs-lisp
(defun dotspacemacs-configuration-layers ()
'((ruby :variables ruby-version-manager 'rvm)))
2015-06-10 16:44:30 +00:00
#+END_SRC
When a version manager is enabled it will use the currently activated ruby
except if a =.ruby-version= file exists in which case the ruby version of
this file is used.
=rvm= will also try to look for a =.rvmrc= and =gemfile=, the priority order is
=.rvmrc= then =.ruby-version= then =gemfile=.
Note: Only one version manager at a time can be enabled.
2015-06-10 16:44:30 +00:00
** Test runner
This layer supports both =RSpec= and =ruby-test= test runners (frameworks).
By default =ruby-test= is used, to change to another frameworks set
the layer variable =ruby-test-runner=.
Example to set the test runner to =RSpec=:
#+BEGIN_SRC emacs-lisp
(defun dotspacemacs-configuration-layers ()
'((ruby :variables ruby-test-runner 'rspec)))
#+END_SRC
=Tip:= You can enable different test runners for different projects by using
directory local variables.
2015-06-10 16:44:30 +00:00
* Key bindings
** Ruby (enh-ruby-mode, robe, inf-ruby, ruby-tools)
2015-06-10 16:44:30 +00:00
| Key binding | Description |
|-------------+------------------------------------------------------|
| ~SPC m '~ | toggle quotes of current string (only built-in mode) |
| ~SPC m {~ | toggle style of current block (only built-in mode) |
| ~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 |
| ~SPC m x '~ | Change symbol or " string to ' |
2016-03-01 17:54:00 +00:00
| ~SPC m x "~ | Change symbol or ' string to " |
| ~SPC m x :~ | Change string to symbol |
| ~%~ | [[https://github.com/redguardtoo/evil-matchit][evil-matchit]] jumps between blocks |
2015-06-10 16:44:30 +00:00
** Bundler
| Key binding | Description |
|-------------+--------------------|
| ~SPC b c~ | run bundle check |
| ~SPC b i~ | run bundle install |
| ~SPC b s~ | run bundle console |
| ~SPC b u~ | run bundle update |
| ~SPC b x~ | run bundle exec |
| ~SPC b o~ | run bundle open |
** RuboCop
| Key binding | Description |
|---------------+------------------------------------------------------|
| ~SPC m r r f~ | Runs RuboCop on the currently visited file |
| ~SPC m r r F~ | Runs auto-correct on the currently visited file |
| ~SPC m r r d~ | Prompts from a directory on which to run RuboCop |
| ~SPC m r r D~ | Prompts for a directory on which to run auto-correct |
| ~SPC m r r p~ | Runs RuboCop on the entire project |
| ~SPC m r r P~ | Runs auto-correct on the project |
** Tests
*** RSpec-mode
When =ruby-test-runner= equals =rspec=.
| Key binding | Description |
|---------------+--------------------------------------------------------|
| ~SPC m t a~ | run all specs |
| ~SPC m t b~ | run current spec file |
| ~SPC m t c~ | run the current spec file and subsequent ones |
| ~SPC m t d~ | run tests in a directory |
| ~SPC m t e~ | mark example as pending |
| ~SPC m t f~ | run method |
| ~SPC m t l~ | run last failed spec |
| ~SPC m t m~ | run specs related to the current buffer |
| ~SPC m t r~ | re-run last spec |
| ~SPC m t t~ | run spec at pointer |
| ~SPC m t TAB~ | toggle between spec's and target's buffer |
| ~SPC m t ~~ | toggle between spec's and target's buffer find example |
*** Ruby-test-mode
When =ruby-test-runner= equals =ruby-test=.
2015-06-10 16:44:30 +00:00
| Key binding | Description |
|-------------+---------------------|
| ~SPC m t b~ | run test file |
| ~SPC m t t~ | run test at pointer |
2016-03-01 17:54:00 +00:00
2016-02-29 19:24:52 +00:00
** Rake
| Key binding | Description |
|-------------+---------------------------------|
| ~SPC m k k~ | Runs rake |
| ~SPC m k r~ | Re-runs the last rake task |
| ~SPC m k R~ | Regenerates the rake cache |
| ~SPC m k f~ | Finds definition of a rake task |