spacemacs/contrib/lang/ruby
2014-12-10 00:20:14 -05:00
..
packages.el Missing :defer t for ruby-test-mode in ruby layer 2014-12-10 00:20:14 -05:00
README.md Add R logo to readme and fix ruby 2014-12-10 00:00:39 -05:00
ruby.gif Update ruby layer readme 2014-12-09 23:39:09 -05:00

Ruby contribution layer for Spacemacs

logo

Table of Contents

Description

This layer aims at providing support for the Ruby language using enh-ruby-mode and robe-mode.

Install

To use this contribution add it to your ~/.spacemacs

(setq-default dotspacemacs-configuration-layers '(ruby)
  "List of contribution to load."
)

In order to take advantage of robe-mode you will probably need to install the pry gem. You can do that via your Gemfile:

 gem 'pry'

or on the command line:

$ gem install pry

Key bindings

enh-ruby-mode

SPC m i start REPL SPC m g go to definition (robe-jump) SPC m d go to Documentation SPC m R reload environment (Rails)

ruby-test-mode

ruby-test-mode comes bundled with spacemacs, but this contribution adds a couple of useful keybindings:

SPC m t b run test file SPC m t t run test at pointer