Class: Tobi::Config

Inherits:
Object
  • Object
show all
Defined in:
lib/tobi/config.rb

Overview

アプリケーション設定情報の保持と設定値のチェック

Instance Attribute Summary collapse

Instance Method Summary collapse

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 = merge_options(opts)
  check
end

Instance Attribute Details

#app_nameObject (readonly)

アプリケーション名(String)



7
8
9
# File 'lib/tobi/config.rb', line 7

def app_name
  @app_name
end

#optionsObject (readonly)

各種設定(Hash)



9
10
11
# File 'lib/tobi/config.rb', line 9

def options
  @options
end