From 4cdf9dbf86c4596a596fc32e4793e8547df0c189 Mon Sep 17 00:00:00 2001 From: Eustaquio Rangel Date: Wed, 16 Jul 2014 19:40:38 -0300 Subject: [PATCH] Changed double quotes to single quotes. We'll start to change this to make valid Ruby source files according to Rubocop (https://github.com/bbatsov/rubocop). Changes here came from https://github.com/honza/vim-snippets/pull/401, thanks for warning us, @mkroman! --- snippets/rails.snippets | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/snippets/rails.snippets b/snippets/rails.snippets index fba3fb4..84215ba 100644 --- a/snippets/rails.snippets +++ b/snippets/rails.snippets @@ -414,11 +414,11 @@ snippet desc ${0} end snippet descm - describe "${1:#method}" do - ${0:pending "Not implemented"} + describe '${1:#method}' do + ${0:pending 'Not implemented'} end snippet cont - context "${1:message}" do + context '${1:message}' do ${0} end snippet bef @@ -450,7 +450,7 @@ snippet shared snippet ibl it_behaves_like ${0:"shared examples name"} snippet it - it "${1:spec_name}" do + it '${1:spec_name}' do ${0} end snippet its