2012-06-28から1日間の記事一覧

自分用のConfigクラス

railsでどうすればいいのかわからなかったので、取り急ぎ作った。 require 'singleton' module Bei class Config include Singleton def initialize file = Rails.root.to_s + '/config/environments/config_' + ENV['RAILS_ENV'] + '.rb' @config = eval ( …