Rails:rake db:seedを実行すると、US-ASCIIの無効なバイトシーケンス(引数エラー)


87

アプリで実行するrake db:seedと、Rails次のエラーが発生します。

US-ASCIIの無効なバイトシーケンス(引数エラー)

science_majorsシードファイルに追加してダウンしたところ、実行するrake db:seedと次のエラーが発生します。

無効なバイトシーケンスエラー

これはなぜですか、どうすれば修正できますか?

seeds.rbの一部

@college = College.find_or_create_by_name!('University of Pittsburgh')
if @college.update_attributes(
  url: 'university-of-pittsburgh',
  public: 'Public',
  years: '4-year',
  category: 'National University',
  calendar: 'Semester',
  location: 'Pittsburgh, PA',
  setting: 'Large City (250-500k)',
  retention: '90',
  majors: 'business/marketing: 15%|social sciences: 14%|health professions: 11%|english: 10%|engineering: 9%|psychology: 8%|biology: 7%|history: 5%',
  scholarships_link: 'http://www.oafa.pitt.edu/universityschlrs.aspx',
  map: '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=s_q&amp;hl=en&amp;geocode=&amp;q=university+of+pittsburgh&amp;aq=&amp;sll=40.444261,-79.970448&amp;sspn=0.142165,0.251656&amp;ie=UTF8&amp;hq=university+of+pittsburgh&amp;t=m&amp;ll=40.443486,-79.958245&amp;spn=0.010798,0.021038&amp;output=embed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=university+of+pittsburgh&amp;aq=&amp;sll=40.431368,-79.9805&amp;sspn=0.142165,0.251656&amp;ie=UTF8&amp;hq=university+of+pittsburgh&amp;t=m&amp;ll=40.443486,-79.958245&amp;spn=0.010798,0.021038" style="color:#0000FF;text-align:left">View Larger Map</a></small>',
  street_view: '<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=University+of+Pittsburgh,+4200+Fifth+Ave,+Pittsburgh,+PA&amp;aq=0&amp;oq=uni&amp;sll=40.444261,-79.970448&amp;sspn=0.142165,0.251656&amp;ie=UTF8&amp;hq=University+of+Pittsburgh,+4200+Fifth+Ave,+Pittsburgh,+PA&amp;ll=40.443486,-79.958245&amp;spn=0.010798,0.021038&amp;t=m&amp;layer=c&amp;cbll=40.441775,-79.956671&amp;panoid=BgWQKMiSI1fpwP7JUF16Vg&amp;cbp=12,45.25,,0,-3.34&amp;output=svembed"></iframe><br /><small><a href="https://maps.google.com/maps?f=q&amp;source=embed&amp;hl=en&amp;geocode=&amp;q=University+of+Pittsburgh,+4200+Fifth+Ave,+Pittsburgh,+PA&amp;aq=0&amp;oq=uni&amp;sll=40.431368,-79.9805&amp;sspn=0.142165,0.251656&amp;ie=UTF8&amp;hq=University+of+Pittsburgh,+4200+Fifth+Ave,+Pittsburgh,+PA&amp;ll=40.443486,-79.958245&amp;spn=0.010798,0.021038&amp;t=m&amp;layer=c&amp;cbll=40.441775,-79.956671&amp;panoid=BgWQKMiSI1fpwP7JUF16Vg&amp;cbp=12,45.25,,0,-3.34" style="color:#0000FF;text-align:left">View Larger Map</a></small>',
  housing: '<iframe src="http://www.tour.pitt.edu/tour-categories/residence-halls" scrolling="no" height="820" width="900"></iframe>',
  food: '<div style="overflow: hidden; max-width: 1000px;"><iframe scrolling="no" src="http://www.pc.pitt.edu/dining/menus.php" style="margin-left: 0; height: 2000px; margin-top: -370px; margin-bottom: -375px; width: 750px;"></iframe></div>',
  weather: '<div style="overflow: hidden; max-width: 500px;"><iframe scrolling="no" src="http://www.weather.com/weather/wxclimatology/monthly/graph/USPA1290" style="margin-left: -40px; height: 1570px; margin-top: -490px; width: 500px;"></iframe></div>',
  dorms: 'Towers (fr.)|Sutherland (fr.)|Lothrop (fr.)|Nordenberg (fr.)|Holland (fr.)|Forbes (fr.; honors)|McCormick|Brackenridge|Amos|Bruce|Panther|Pennsylvania|Ruskin|Bouquet Gardens|Oakwood Apartments|Centre-Plaza Apartments|Forbes-Craig Apartments (honors)',
  science_majors: 'Actuarial Mathematics|Applied Mathematics|Bioinformatics|Biological Sciences|Chemistry*|Computer Science|Ecology and Evolution|Environmental Geology|Environmental Studies|Geology|History and Philosophy of Science|Linguistics*|Mathematics*|Mathematics-Economics|Mathematics-Philosophy|Microbiology|Molecular Biology|Natural Sciences Area|Neuroscience*|Physics*|Physics and Astronomy|Scientific Computing|Statistics',
  social_science_majors: 'Economics*|Economics–Statistics|History*|Political Science*|Politics-Philosophy|Psychology|Sociology*|Urban Studies',
  humanities_majors: 'Africana Studies*|Africana Studies–English|Anthropology|Chinese*|Classics*|English Literature*|English Writing|Film Studies*|French*|German|History of Art & Architecture|Humanities Area|Italian*|Italian Studies|Japanese*|Liberal Studies|Music*|Philosophy*|Religious Studies*|Russian|Slavic Studies|Spanish|Studio Arts*|Theatre Arts*',
  business_majors: 'Accounting|Finance|General Management|Global Management|Marketing',
  engineering_majors: 'Bioengineering*|Chemical Engineering*|Civil Engineering*|Computer Engineering|Electrical Engineering*|Engineering Physics|Industrial Engineering*|Materials Science and Engineering*|Mechanical Engineering*',
  professional_majors: 'Administration of Justice*|Applied Developmental Psychology|Architectural Studies|Athletic Training|Clinical Dietetics and Nutrition|Communication: Rhet & Comm|Communication Science|Dental Hygiene|Emergency Medicine|Health Information Management|Health Services|Health and Physical Activity|Information Science|Legal Studies*|Media and Professional Communications|Nursing|Pharmacy|Public Service*|Rehabilitation Science|Social Work*'
)
else
  # handle validation errors
end

@college= College.find_or_create_by_name!('Harvard')
if @college.update_attributes(
  url: 'harvard',
  public: 'Private',
  years: '4-year',
  category: 'National University',
  calendar: 'Semester',
  location: 'Cambridge, MA',
  setting: 'Small City (50-250k)',
  degrees: 'Bachelors, Masters, Doctoral',
  rotc: 'Air Force, Army, Navy',
  considered: 'Academic GPA|Alumni Relation|Application Essay|Character/Personal Qualities|Extracurricular Activities|First Generation College Student|Geographical Residence|Interview|Racial/Ethnic Status|Recommendations|Rigor of secondary school record|Standardized Test Scores|Talent/Ability|Volunteer Work|Work Experience',
  student_faculty: '7 to 1')
else
  # handle validation errors
end

私は他のすべての大学を除外しました。私はこれまでに200の学校を持っていますが、これまでのところ包括的なデータを持っているのはピットだけです。残りはハーバードのような基本的なデータだけです。また、簡潔にするためにPittのデータの一部を省略しましたが、残りを含めてほしい場合はお知らせください。

編集:私は*'を下に取り出してscience_majors実行しようとしましたrake db:seedが、それは何も変わりませんでした。

回答:


182

追加した日付をエンコードするようにファイルシステムが構成されていないため、エンコードエラーが発生します(おそらく、以前のデータシードに存在しなかった新しい文字がHTMLエンティティでエンコードされたマップURLに含まれている可能性があるため) 。

以下は、マシンにUTF-8ロケールを設定することにより、このエラーを解決するはずです。

# from your command line
export LANG=en_US.UTF-8
export LANGUAGE=en_US.UTF-8
export LC_ALL=en_US.UTF-8
bundle

システムロケールを設定する利点は、すべてのgem(今後)がUTF-8エンコーディングを使用してバンドルされることです。

編集:

または、システムエンコーディングを変更したくない場合は、Gemfileでエンコーディング標準を指定することにより、プロジェクト全体でエンコーディングを設定できます。

if RUBY_VERSION =~ /1.9/ # assuming you're running Ruby ~1.9
  Encoding.default_external = Encoding::UTF_8
  Encoding.default_internal = Encoding::UTF_8
end

1
お役に立ててうれしいです。このアプローチを採用する場合は、プロジェクトをデプロイしたすべての環境で、ロケールがUTF-8に設定されていることを確認してください。それ以外の場合は#encoding utf-8、他の投稿者が注意深く指摘しているように、ファイルの先頭に追加して、ファイルが適切にエンコードされていることを確認する必要があります。
zeantsoi 2013年

私は実際に#encodingutf-8を削除して、あなたが言ったことを実行しようとしましたが、機能しませんでした。 ~/collegeanswers >> export LANG=en_US.UTF-8 ~/collegeanswers >> export LC_ALL="en_US.UTF-8" ~/collegeanswers >> bundle Using rake (10.0.4) . . Using i18n (0.6.1) Your bundle is complete! Use bundle show [gemname] `を使用して、バンドルされたgemがインストールされている場所を確認します。〜/ collegeanswers >> rake db:seed rake aborted! `理由を知っていますか?
Adam Zerner 2013年

あなたのrakeエラーは何ですか?既存のgemは、ファイルシステムエンコーディングで動作するようにまだ構成されていない可能性があります。試してbbundle exec gem uninstall i18nから、bundle install
zeantsoi 2013年

私のレーキエラーはでしたinvalid byte sequence in US-ASCII (ArgumentError) 。私はあなたが言ったことを試したところ、同じエラーが発生しました。
Adam Zerner 2013年

Webサーバーを再起動しましたか?あなたが達成しようとしていることを達成するためのより多くのオプションを提供するために私の答えを更新しました。
zeantsoi 2013年

64

追加

#encoding: utf-8

ファイルの先頭に


なぜ今それをする必要があるのですか、しかし私がする必要がなかった前に?
Adam Zerner 2013年

試してみましたが、うまくいきました。ありがとうございます。しかし、以前はすべてが機能していた理由を知りたいので、それを追加して機能させる必要があります。
Adam Zerner 2013年

1
たぶんあなたはあなたのファイルにいくつかの特別なutf-8サインを追加しました.. :)
BvuRVKyUVlViVIc7 2013年

私は他の人の答えの更新を読んだばかりで、実際にはもっと包括的であるため、それを受け入れられた答えとしてマークしますが、それでもあなたの助けに本当に感謝しています!
Adam Zerner 2013年

39

export RUBYOPT="-KU -E utf-8:utf-8" このGHスレッドで述べられているように試すこともできます


ありがとう!それが助けになった唯一のことshotgun-0.9.1/bin/shotgun:94:in `[]': invalid byte sequence in US-ASCII (ArgumentError)
Slava V

18

ルビードッカーコンテナでこの問題が発生している場合は、次のいずれかを設定できますLANG=C.UTF-8

docker run -it --rm -e LANG=C.UTF-8 ruby ...

またはこの問題をご覧ください


または、この回答のリンクに示されているように、独自のDockerイメージを作成する場合は、Dockerfileに「ENVLANG = C.UTF-8」を追加します
Alex

7

他の人が提案したように、私#encoding: utf-8は自分の(この場合はseed.rb)ファイルの先頭に追加しましたが、それでもrakeタスクを機能させることができませんでした。

興味深いことに、友人は、レールによって生成された追加のコメントをシードファイルの先頭から削除して、#encoding: utf-8残るようにすることを勧めました。

あなたは何を知っていますか-それはうまくいきました。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.