web-dev-qa-db-fra.com

Ruby: comment ajouter "# encoding: UTF-8" automatiquement?

Existe-t-il une gemme qui ajoute # encoding: UTF-8 à chaque fichier Ruby automatiquement?

Ou existe-t-il un autre moyen d'éviter l'erreur invalid multibyte char (US-ASCII) dans l'ensemble du projet Ruby on Rails (pas dans une seule classe uniquement)? 

30
krn

Essayez magic_encoding gem, il peut insérer un commentaire magique uft-8 dans tous les fichiers Ruby de votre application.

[EDIT] Après être passé à SublimeText, j'utilise maintenant auto-encoding-for-Ruby plugin.

24
Mirko

Mettez à niveau vers Ruby 2.0 , car il fait de l’encodage par défaut UTF-8, éliminant ainsi le besoin de commentaires magiques.

27
Paul McMahon

Vim:

:args **/*.Ruby
:set hidden
:argdo norm! O# encoding: UTF-8
:wqa
6
Benoit

Pourquoi ne pas lancer un script?

#!/usr/bin/env Ruby1.9.1
require 'find'

fixfile = []

Find.find('.') do |path|
  next unless /\.rb$/.match(path);
  File.open(path) do |file|
    count = 0;
    type = :lib
    file.each do |line|
      if count == 0 and /#!/.match(line)
        type = :script
      end
      if  /utf/.match(line)
        break
      end
      if (count += 1) > 10 then
        fixfile.Push path:path, type:type
        break
      end
    end
    if file.eof?
        fixfile.Push path:path, type:type
    end
  end
end

fixfile.each do |info|
  path = info[:path]
  backuppath = path + '~'
  type = info[:type]
  begin
     File.delete(backuppath) if File.exist?(backuppath)
     File.link(path, backuppath)
  rescue Errno::ENOENT => x
     puts "could not make backup file '#{backuppath}' for '#{ path }': #{$!}"
     raise
  end
  begin
    inputfile = File.open(backuppath, 'r')
    File.unlink(path)
    File.open(path, 'w') do |outputfile|
      if type == :script
        line = inputfile.readline
        outputfile.write line
      end
      outputfile.write "# encoding: utf-8\n"
      inputfile.each do |line|
        outputfile.write line
      end
      inputfile.close
      outputfile.close
    end
  rescue => x
    puts "error: #{x} #{$!}"
    exit
  end

Pour le rendre automatique, ajoutez ceci à votre Rakefile.

Vous pouvez exécuter file -bi #{path} et rechercher charset = utf-8 si vous souhaitez uniquement mettre à jour les fichiers comportant des caractères utf-8.

2
G. Allen Morris III

Si vous utilisez Sublime Text 2, vous pouvez utiliser un plug-in qui inclut automatiquement une déclaration d'encodage lorsque cela est nécessaire: https://github.com/elomarns/auto-encoding-for-Ruby .

L'ajout d'un # encoding: UTF-8 à chaque fichier Ruby n'a automatiquement de sens que lorsque vos fichiers sont réellement stockés dans UTF-8.

Si vos fichiers sont codés en CP850 (par défaut, selon les informations AFAIK sous Windows) et que vous utilisez des caractères non-ASCII, vous remplacez invalid multibyte char (US-ASCII) par invalid multibyte char (UTF-8).

Je préférerais une modification manuelle et une vérification de chaque fichier, si c'est vraiment UTF-8.

0
knut