spacemacs/layers/+frameworks/ruby-on-rails
syl20bnr 584392bd92 [core] Fix layer dependencies based on layer variables
There was a edge case with the declaration of the `lsp` layer in `layers.el`
files.
The `hy` layer depends on the `python` layer which in turn depends on the `lsp`
layer if and only if the `python-backend` layer variable is set to `lsp`.
When the `hy` layer was declared first then it declares the `python` layer
without its layer variables, thus the `lsp` layer was not declared because the
`python-backend` variable was not set.

The fix is to gather all the layer dependencies and resolve them only after all
the used layers have been declared.

* new function `configuration-layer/declare-layer-dependencies`
* replace all calls to `configuration-layer/declare-layer` by the new function
  except for distribution layers (we declare layer dependencies right away in
  distribution layers)
2019-09-30 02:00:48 -04:00
..
img
layers.el [core] Fix layer dependencies based on layer variables 2019-09-30 02:00:48 -04:00
packages.el
README.org

Ruby on Rails layer

/TakeV/spacemacs/media/commit/97c746f51db027af3438fdaf432fe1b1c576ba43/layers/+frameworks/ruby-on-rails/img/ror.png

Description

This layer aims at providing support for the Ruby on Rails framework.

Features:

  • Quick file navigation with with projectile-rails
  • Run server
  • Run generators
  • Rake runner
  • Interactive Rails console

Install

To use this configuration layer, add it to your ~/.spacemacs. You will need to add ruby-on-rails to the existing dotspacemacs-configuration-layers list in this file.

Key bindings

Code Navigation

Key binding Description
SPC m f f a find localization file
SPC m f f b find job
SPC m f f c find controller
SPC m f f e find environment file
SPC m f f f find feature
SPC m f f h find helper
SPC m f f i find initializer
SPC m f f j find javascript file
SPC m f f l find library
SPC m f f m find model
SPC m f f n find migration
SPC m f f o find log
SPC m f f p find spec file
SPC m f f r find rake task
SPC m f f s find stylesheet file
SPC m f f S find serializer file
SPC m f f t find test
SPC m f f u find fixture
SPC m f f v find view
SPC m f f w find webpack config
SPC m f f y find layout
SPC m f f @ find mailer
SPC m f g c go to current controller
SPC m f g d go to DB schema
SPC m f g e go to DB seeds
SPC m f g h go to current helper
SPC m f g j go to current javascript
SPC m f g g go to Gemfile
SPC m f g m go to current model
SPC m f g n go to current migration
SPC m f g p go to current spec
SPC m f g r go to routes
SPC m f g s go to current stylesheet
SPC m f g t go to current test
SPC m f g u go to current fixture
SPC m f g v go to current view
SPC m f g z go to spec helper
SPC m f g . go to file at point (faster but less powerful than SPC m g g)

Refactoring

Key binding Description
SPC m f R x extract region into partial

RUN commands

Key binding Description
SPC m f : run rake task
SPC m f c c run rails generator
SPC m f c d run rails destroy
SPC m f i start rails console
SPC m f s r reload Rails project
SPC m f x s start rails server

Ex-commands

Key binding Description
:A Switch between implementation and tests