のむログ

技術メモ / 車 / 音楽 / 雑記 / etc...

こちらは旧ブログになります。

新ブログはこちらに移行しました🙇

Ruby on Rails

Railsで使えると思った関数

複数の配列を同時に取り出す ふと並列に配列を取り出したいと思っていろいろと関数を作ったりしてたのですが、こんな関数がRailsにはありました @array1 = [ 1, 2, 3, 4, 5] @array2 = ['a', 'b', 'c', 'd', 'e'] @mixed_array = [] @array1.zip(@array2).ea…

Ruby_on_Railsを勉強する

エラー対策 rails sに失敗する(08/05追記) `rescue in block (2 levels) in require': There was an error while trying to load the gem 'uglifier'. (Bundler::GemRequireError) Gemfileを編集する 以下を追加してbundle installします gem 'therubyracer'…

Railsでの「There was an error while trying to load the gem 'uglifier'」

問題 rails sを実行した時に以下のようなエラーがでる。 nomunomu@nomunomu-server:~/rails_lesson/myapp$ rails server -b 192.168.11.11 -d /home/nomunomu/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/bundler-1.16.3/lib/bundler/runtime.rb:84:in …