dogwood008の開発メモ!

最近のマイブームは機械学習, Ruby on Rails。中でも機械学習を使った金融商品の自動取引に興味があります。

2013-12-14から1日間の記事一覧

rails4で,development環境かproduction環境かの判別

「Rails.env」を使用すれば良い. case Rails.env when 'development' puts 'developmnent' when 'production' puts 'production'endif Rails.env.development? puts 'development'endif Rails.env.production? puts 'production'end※参考:http://memo.yomu…

Rails4でエラー:You should not use the `match` method in your router without specifying an HTTP method. (RuntimeError)

rails sを実行時に,「You should not use the `match` method in your router without specifying an HTTP method. (RuntimeError)」とエラーが出た際には,routes.rbに「match」メソッドが含まれていることが原因.例えば, root :to => 'thread#index' ma…