浏览代码

Merge pull request #1586 from HeroicEric/master

add rspec alias to zeus plugin
Robby Russell 11 年之前
父节点
当前提交
6e6cf43037
共有 2 个文件被更改,包括 6 次插入1 次删除
  1. 2 0
      plugins/zeus/README.md
  2. 4 1
      plugins/zeus/zeus.plugin.zsh

+ 2 - 0
plugins/zeus/README.md

@@ -25,6 +25,8 @@
 * `zcu` aliases `zeus cucumber`
 * `zucumber` aliases `zeus cucumber`
 
+* `zspec` aliases `zeus rspec`
+
 * `zt` aliases `zeus test`
 * `zest` aliases `zeus test`
 

+ 4 - 1
plugins/zeus/zeus.plugin.zsh

@@ -4,7 +4,7 @@
 
 # Always use bundler.
 # Rails depends on bundler, so we can be pretty sure, that there are no
-# problems with this command. For all the other aliases I provided an 
+# problems with this command. For all the other aliases I provided an
 # alternative, in case people have conflicts with other plugins (e.g. suse).
 alias zeus='bundle exec zeus'
 
@@ -40,6 +40,9 @@ alias zunner='zeus runner'
 alias zcu='zeus cucumber'
 alias zucumber='zeus cucumber'
 
+# Rspec
+alias zspec='zeus rspec'
+
 # Test
 alias zt='zeus test'
 alias zest='zeus test'