cask: conform to style guide

* no line longer than 79 characters
* indent with 2 spaces
* no capitals in description
This commit is contained in:
Sebastien Duthil 2014-10-01 17:41:44 -04:00
parent aad31f4468
commit eefc2ff7ed
1 changed files with 41 additions and 41 deletions

View File

@ -14,16 +14,16 @@
# names of its contributors may be used to endorse or promote products # names of its contributors may be used to endorse or promote products
# derived from this software without specific prior written permission. # derived from this software without specific prior written permission.
# #
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED # AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY # DISCLAIMED. IN NO EVENT SHALL ZSH-USERS BE LIABLE FOR ANY DIRECT, INDIRECT,
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND # PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
# ------------------------------------------------------------------------------ # ------------------------------------------------------------------------------
# Description # Description
# ----------- # -----------
@ -49,18 +49,18 @@ function _cask() {
case $state in case $state in
subcommand) subcommand)
subcommands=( subcommands=(
"path:Print Emacs exec-path (including package bin path)" "path:print Emacs exec-path (including package bin path)"
"load-path:Print Emacs load-path (including package dependencies)" "load-path:print Emacs load-path (including package dependencies)"
"help:Display this help message" "help:display help message"
"info:Show info about this project" "info:show info about this project"
"list:List dependencies" "list:list dependencies"
"version:Show the package version" "version:show the package version"
"init:Create basic Cask file" "init:create basic Cask file"
"exec:Execute command with correct dependencies" "exec:execute command with correct dependencies"
"update:Update dependencies" "update:update dependencies"
"install:Install dependencies" "install:install dependencies"
"package:Create -pkg.el file" "package:create -pkg.el file"
"package-directory:Print package installation directory" "package-directory:print package installation directory"
) )
_describe -t subcommands 'cask subcommands' subcommands && ret=0 _describe -t subcommands 'cask subcommands' subcommands && ret=0
esac esac