Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

Ruby on Rails | プロジェクト固有の設定値の管理

概要

プロジェクト固有の設定値の管理

内容

environment/development.rb
environment/test.rb
environment/production.rb
などに固有の設定を追加

サンプル

environment/xxx.rb

Bookshelf::Application.configure do
  config.hoge = true
end

利用側

Bookshelf::Application.config.js