程式筆記
Ruby on Rails
Rails error 小處理紀錄
K
kidneyweakx
March 27, 2019 (Updated: December 17, 2025)
# Runtime error
ruby
'Could not find a JavaScript runtime' but execjs AND therubyracer are in Gemfile
# solution.
只要在gemfile加入
ruby
gem 'execjs'
gem 'therubyracer', :platforms => :ruby
就解決了
# 出現這個warning
ruby
add gem 'sqlite3'
可是在gemfile裡已經有了sqlite3卻出現錯誤
# solution.
將原本
ruby
gem 'sqlite3'
改成
ruby
gem 'sqlite3','~> 1.3.0'
Related Articles
→
LOG-DC6
No File is an Island: Unraveling Swift Dependencies and Architecture
> > In the world of Swift, we are accustomed to the power of Xcode and clean syntax. However, as a project's scale grows, an invisible monster begins to haunt the...
[程式筆記][Swift]
@kidneyweakx→
LOG-FE5
Saved by the Logs: How to Recover a Forgotten Keystore Password via IDE Build Logs.
> > The greatest distance in the world is when the password is right in the IDE, but I can't see it
[程式筆記][Android]
@kidneyweakx→
LOG-912
Hexo升級V5排除疑難雜症
> 因為剛好把電腦重灌,然後這個blog就躺在D槽等著我幫他換新的環境,然後他就被我快樂的升級了。
[程式筆記][Javascript][hexo]
@kidneyweakx