AWSでのデプロイを実行する上で secretkey baseを発行する際に Javascript Runtimeのエラーが出てしまい解決できていません。対応方法ご指南頂きたいです。
[ec2-user@ip-xxxxxxx yyyy]$ rake secret rake aborted! ExecJS::RuntimeUnavailable: Could not find a JavaScript runtime. See https://github.com/rails/execjs for a list of available runtimes. /var/www/mitene-app/config/application.rb:7:in `<top (required)>' /var/www/mitene-app/Rakefile:4:in `require_relative' /var/www/mitene-app/Rakefile:4:in `<top (required)>' (See full trace by running task with --trace)
エラーメッセージのの確認先URL
リンク内容
ExecJS ExecJS lets you run JavaScript code from Ruby. It automatically picks the best runtime available to evaluate your JavaScript program, then returns the result to you as a Ruby object. ExecJS supports these runtimes: therubyracer - Google V8 embedded within Ruby therubyrhino - Mozilla Rhino embedded within JRuby Duktape.rb - Duktape JavaScript interpreter Node.js Apple JavaScriptCore - Included with Mac OS X Microsoft Windows Script Host (JScript) Google V8 mini_racer - Google V8 embedded within Ruby A short example: require "execjs" ExecJS.eval "'red yellow blue'.split(' ')" # => ["red", "yellow", "blue"] A longer example, demonstrating how to invoke the CoffeeScript compiler: require "execjs" require "open-uri" source = open("http://coffeescript.org/extras/coffee-script.js").read context = ExecJS.compile(source) context.call("CoffeeScript.compile", "square = (x) -> x * x", bare: true) # => "var square;\nsquare = function(x) {\n return x * x;\n};" Installation $ gem install execjs
【行ったこと】
・gem "execjs"のインストール
"rubyracer"や"mini-racer" などのgemもインストール必要でしょうか?
こちらも試しましたが別のエラーが発生してしまい、こちらも解決できず手詰まりとなり質問させて頂きました。
・
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。