Skip to content

Commit be1695a

Browse files
committedJun 5, 2015
rb: add utf-8 encoding to all .rb files
1 parent ae3290c commit be1695a

File tree

194 files changed

+388
-1
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+388
-1
lines changed
 

‎Rakefile

+2-1
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,8 @@ namespace :copyright do
709709
:prefix => "#!/usr/bin/python\n#\n")
710710
Copyright.Update(
711711
FileList["rb/**/*.rb"],
712-
:style => "#")
712+
:style => "#",
713+
:prefix => "# encoding: utf-8\n\n")
713714
Copyright.Update(
714715
FileList["java/**/*.java"].exclude(
715716
"java/client/src/org/openqa/selenium/internal/Base64Encoder.java",

‎rb/lib/selenium-client.rb

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
# encoding: utf-8
2+
13
# Licensed to the Software Freedom Conservancy (SFC) under one
24
# or more contributor license agreements. See the NOTICE file
35
# distributed with this work for additional information

0 commit comments

Comments
 (0)