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!
This commit is contained in:
Eustaquio Rangel 2014-07-16 19:40:38 -03:00
parent cbcc23571f
commit 4cdf9dbf86

View File

@ -414,11 +414,11 @@ snippet desc
${0} ${0}
end end
snippet descm snippet descm
describe "${1:#method}" do describe '${1:#method}' do
${0:pending "Not implemented"} ${0:pending 'Not implemented'}
end end
snippet cont snippet cont
context "${1:message}" do context '${1:message}' do
${0} ${0}
end end
snippet bef snippet bef
@ -450,7 +450,7 @@ snippet shared
snippet ibl snippet ibl
it_behaves_like ${0:"shared examples name"} it_behaves_like ${0:"shared examples name"}
snippet it snippet it
it "${1:spec_name}" do it '${1:spec_name}' do
${0} ${0}
end end
snippet its snippet its