aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/cask/lib/hbc/cask_loader.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Homebrew/cask/lib/hbc/cask_loader.rb b/Library/Homebrew/cask/lib/hbc/cask_loader.rb
index c32b35584..74c39176d 100644
--- a/Library/Homebrew/cask/lib/hbc/cask_loader.rb
+++ b/Library/Homebrew/cask/lib/hbc/cask_loader.rb
@@ -16,11 +16,11 @@ module Hbc
end
def initialize(content)
- @content = content
+ @content = content.force_encoding("UTF-8")
end
def load
- instance_eval(content.force_encoding("UTF-8"), __FILE__, __LINE__)
+ instance_eval(content, __FILE__, __LINE__)
end
private
@@ -52,7 +52,7 @@ module Hbc
@content = IO.read(path)
- super
+ instance_eval(content, path)
end
private