From 51cfbdc4d16739caac4d946fadbe678444aafe34 Mon Sep 17 00:00:00 2001 From: Thom May Date: Thu, 14 Jan 2016 14:08:03 +0000 Subject: Use double quotes by default This is an entirely mechanically generated (chefstyle -a) change, to go along with chef/chefstyle#5 . We should pick something and use it consistently, and my opinion is that double quotes are the appropriate thing. --- ext/win32-eventlog/Rakefile | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) (limited to 'ext') diff --git a/ext/win32-eventlog/Rakefile b/ext/win32-eventlog/Rakefile index 0aaf5df62f..81137b0d8d 100644 --- a/ext/win32-eventlog/Rakefile +++ b/ext/win32-eventlog/Rakefile @@ -1,6 +1,6 @@ -require 'rubygems' -require 'rake' -require 'mkmf' +require "rubygems" +require "rake" +require "mkmf" desc "Building event log dll" @@ -13,13 +13,13 @@ def ensure_present(commands) end -EVT_MC_FILE = 'chef-log.man' -EVT_RC_FILE = 'chef-log.rc' -EVT_RESOURCE_OBJECT = 'resource.o' -EVT_SHARED_OBJECT = 'chef-log.dll' -MC = 'windmc' -RC = 'windres' -CC = 'gcc' +EVT_MC_FILE = "chef-log.man" +EVT_RC_FILE = "chef-log.rc" +EVT_RESOURCE_OBJECT = "resource.o" +EVT_SHARED_OBJECT = "chef-log.dll" +MC = "windmc" +RC = "windres" +CC = "gcc" ensure_present [MC, RC, CC] @@ -39,7 +39,7 @@ file EVT_SHARED_OBJECT => EVT_RESOURCE_OBJECT do end task :register => EVT_SHARED_OBJECT do - require 'win32/eventlog' + require "win32/eventlog" dll_file = File.expand_path(EVT_SHARED_OBJECT) begin Win32::EventLog.add_event_source( -- cgit v1.2.1