Class: Tobi::Config
- Inherits:
-
Object
- Object
- Tobi::Config
- Defined in:
- lib/tobi/config.rb
Overview
アプリケーション設定情報の保持と設定値のチェック
Instance Attribute Summary collapse
-
#app_name ⇒ Object
readonly
アプリケーション名(String).
-
#options ⇒ Object
readonly
各種設定(Hash).
Instance Method Summary collapse
-
#initialize(app_name, opts = {}) ⇒ Config
constructor
アプリケーション設定情報の作成とチェックを行う。.
Constructor Details
#initialize(app_name, opts = {}) ⇒ Config
アプリケーション設定情報の作成とチェックを行う。
app_name - アプリケーション名(Stirng) opts - 各種設定(Hash)
15 16 17 18 19 |
# File 'lib/tobi/config.rb', line 15 def initialize(app_name, opts = {}) @app_name = app_name @options = (opts) check end |
Instance Attribute Details
#app_name ⇒ Object (readonly)
アプリケーション名(String)
7 8 9 |
# File 'lib/tobi/config.rb', line 7 def app_name @app_name end |
#options ⇒ Object (readonly)
各種設定(Hash)
9 10 11 |
# File 'lib/tobi/config.rb', line 9 def @options end |