summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2019-12-29 16:28:20 -0800
committerTim Smith <tsmith84@gmail.com>2019-12-29 16:28:20 -0800
commit88ecad48e9966efe3e7dede33014308679289b61 (patch)
tree0e16d7e5c16e09b909d5ec96588558439921949a /lib
parentb658f0b87cee8d9c005908cb7bab5c40a8644a4b (diff)
downloadwmi-lite-88ecad48e9966efe3e7dede33014308679289b61.tar.gz
Chefstyle fixes
Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib')
-rw-r--r--lib/wmi-lite.rb2
-rw-r--r--lib/wmi-lite/wmi.rb6
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/wmi-lite.rb b/lib/wmi-lite.rb
index 2e89165..6d9f5f8 100644
--- a/lib/wmi-lite.rb
+++ b/lib/wmi-lite.rb
@@ -16,4 +16,4 @@
# limitations under the License.
#
-require_relative 'wmi-lite/wmi'
+require_relative "wmi-lite/wmi"
diff --git a/lib/wmi-lite/wmi.rb b/lib/wmi-lite/wmi.rb
index 3d4331b..e558c64 100644
--- a/lib/wmi-lite/wmi.rb
+++ b/lib/wmi-lite/wmi.rb
@@ -16,9 +16,9 @@
# limitations under the License.
#
-require 'win32ole' if RUBY_PLATFORM =~ /mswin|mingw32|windows/
-require_relative 'wmi_instance'
-require_relative 'wmi_exception'
+require "win32ole" if RUBY_PLATFORM =~ /mswin|mingw32|windows/
+require_relative "wmi_instance"
+require_relative "wmi_exception"
module WmiLite
class Wmi