I have seen several ways of specifying the string encoding as follows:

  1. # -*- coding: utf-8 -*-
  2. # coding: utf-8
  3. # encoding: utf-8
  4. #!/usr/bin/env ruby -Ku
  5. #!/usr/bin/env ruby -Eutf-8
  6. Encoding.default_external = "utf-8"

Are there any other? Can someone tell me their difference if any, and their origin if there are any? Are there old ones and new ones; minor ones and popular ones; depreciated ones and appreciated ones?

link|improve this question

1  
Also #1 AFAIK will only work inside a comment so: # -*- coding: utf-8 -*-. The -*- are there to signify that it is a magic comment and shouldn't be removed. – Jakub Hampl Dec 12 '11 at 0:18
feedback

2 Answers

up vote 4 down vote accepted

TL;DR version: use # coding: utf-8 or # encoding: utf-8; they are modern and there is no difference between them.


According to this most enlightening article In Ruby 1.9 the rule is that the magic comment must be:

the first line of your code is a comment that includes the word coding, followed by a colon and space, and then an Encoding name...

So that covers 1, 2 & 3 and probably would include stuff like # foobarcoding: utf-8 as well. This is the preferred method for Ruby 1.9.

For compatibility reasons there are retained the hash bang -K* switches from Ruby 1.8, which covers 4.

Numbers five and six cover a slightly different thing. I recommend reading through the aforelinked article to see how external and internal encodings work exactly. However the gist is that when you read data via an IO object it matters how that data is encoded for reading it correctly. External encoding expresses just that. So when you set external encoding to UTF-8 you imply that the file you are reading is encoded in UTF-8. The internal encoding is to what encoding should Ruby automatically transcode the resulting string from that operation.

The default you are setting is used when an external encoding is not set explicitly. These defaults can be changed via the -E flag in the hash bang (number 5; thus 5 and six would work identically).

Passing -U will set the internal encoding to UTF-8 (meaning that strings will be transcoded automatically to UTF-8 when read).

link|improve this answer
feedback

The 2nd and 3rd are basically the same, where you are specifying the encoding on a file by file basis. You only need "coding", but because "encoding" contains the word "coding", that works too. I can't remember the others off-hand, but Peter Cooper's Ruby 1.9 walkthrough goes over some of the differences.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.