From ac3dd5f69b19c11488b6754fd37bd8eb490215f6 Mon Sep 17 00:00:00 2001 From: "Christopher H. Laco" Date: Wed, 2 Feb 2011 23:16:17 -0500 Subject: [PATCH] Fixed READ typos --- README.textile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.textile b/README.textile index ab9b339..0f1753f 100644 --- a/README.textile +++ b/README.textile @@ -18,18 +18,18 @@ h2. What it does This plugin is pretty basic right now. It currently: -* Sets Spec.js and SpecHelper.js files to jasmine/javascript fileType +* Sets *Spec.js and *SpecHelper.js files to filetype=jasmine+javascript * Applies basic syntax highlighting for jasmine keywords in addition to normal javascript syntax -* Loads snippets for jasmine filetype for: +* Loads snippets for the jasmine filetype for: ** desc: description block with before..it..expect ** before: beforeEach block ** after: afterEach block ** it: it...expect block -** helper: beforeEach block and matcher for SpecHelper.js +** helper: beforeEach block and addMatcher/matcher blocks for SpecHelper.js ** matcher: matcher block for SpecHelper.js ** expect: expect..to line ** spy: spyOn method -* Uses templates for new Spec/SpecHelper buffers +* Uses templates for new jasmine buffers * Runs all specs in jasmine:ci You can disable templating by setting g:jasmine_use_templates="" @@ -38,9 +38,9 @@ By default, the plugin assumes the templates are in bundle/jasmine/template and h2. Running Specs -Slowly working on interactive spec running support. Currently, the Jasmine() command is provided for jasmine fileType buffers. When invoke, it searchs the curent/parent directories of that buffer for the nearest Rakefile, then invokes rake jasmine:ci to run all specs. +I'm slowly working on interactive spec running support. Currently, the Jasmine() command is provided for jasmine buffers. When invoked, it searches the current/parent directories of that buffer for the nearest Rakefile and invokes rake jasmine:ci to run all specs. -I plan on added Red/Green support, as well as quickfix error support. +I plan on adding Red/Green support, as well as quickfix error support. h2. TODO