1
0
Fork 0
mirror of https://github.com/puma/puma.git synced 2022-11-09 13:48:40 -05:00

Fixes #922 - Correctly define file encoding as UTF-8

Line 103 contains the unicode character ñ which causes this to break rake for ruby 1.9.3. 
Specifying the encoding for the file fixes this error.
This commit is contained in:
Tomer Brisker 2016-03-06 14:51:18 +02:00
parent 78c40f1aee
commit c0f2ee2be2

View file

@ -1,3 +1,4 @@
#encoding: utf-8
module Puma
class UnsupportedOption < RuntimeError
end