From b952a71d8c0321dd6c913a0f0ec76ebd7b801946 Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Tue, 22 Jan 2013 10:50:49 -0800 Subject: [PATCH] Fix jasmine_helper.rb generator example Remove the instance variable notation. --- .../templates/spec/javascripts/support/jasmine_helper.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generators/jasmine/templates/spec/javascripts/support/jasmine_helper.rb b/generators/jasmine/templates/spec/javascripts/support/jasmine_helper.rb index 986a4c16..b4919802 100644 --- a/generators/jasmine/templates/spec/javascripts/support/jasmine_helper.rb +++ b/generators/jasmine/templates/spec/javascripts/support/jasmine_helper.rb @@ -4,8 +4,8 @@ # #Example: using a different boot file. #Jasmine.configure do |config| -# @config.boot_dir = '/absolute/path/to/boot_dir' -# @config.boot_files = lambda { ['/absolute/path/to/boot_dir/file.js'] } +# config.boot_dir = '/absolute/path/to/boot_dir' +# config.boot_files = lambda { ['/absolute/path/to/boot_dir/file.js'] } #end #