2015年9月26日 星期六

Rails CLIENT: 1.4.0, SERVER: 1.3.6

我在下rails d model Person 這行指令(移除Person這個Model)


遇到以下的提示訊息...

There is a version mismatch between the spring client and the server.
You should restart the server and make sure to use the same version.

CLIENT: 1.4.0, SERVER: 1.3.6


解法:在Gemfile裡面spring這個gem,加入1.3.6這個版號
原本:gem 'spring'
修改:gem 'spring', '1.3.6'


再下一次bundle update這個指令更新Gemfile

這問題我遇到兩次了,希望可以幫助大家

2015年9月17日 星期四

How to use Postgres in Rails?


edit "yourproject/config/database.yml"

edit "yourproject/Gemfile"










Done!!!

Heroku只能用Postgres Database


原本在rails安裝sqlite3上傳程式到heroku,結果回傳Build failed


同樣的在rails將sqlite3換成mysql2上傳程式到heroku,結果回傳Build failed
(不能同時有兩個gme sqlite3和mysql2)

哈哈哈~~~成功上傳