1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Emacsで該当のspecにパッと飛びたい

Posted at

Rails Projectでの開発効率をちょっとだけ上げるpackageの紹介です。実質10行くらいの簡単なもの。
projectile-railsを使えばすべて解決す(ry

本体はGitHub/spec-jump.elにおいておきます。

What's This

Rails Projectでファイルを編集中に M-x spec-jump を実行することで、対応するspecファイルをサジェストします。
(注意)Git管理下のRails Projectである必要があります。

image.gif

Usage

1. init.el を編集

git cloneした後に、init.el に以下を記述してください。

;; pathを通す
(add-to-list 'load-path "/path/to/spec-jump")
(require 'spec-jump)

2. counsel のインストール

ファイル検索にcounselを使用しています.
MELPAからインストールしてください。

3. 実行

簡単です

  1. Git管理下のRails Projectでファイルを編集します
  2. M-x spec-jump を実行します
  3. 対応するspec fileの候補がMinibufferにサジェストされます
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?