File: dynamic.rb

package info (click to toggle)
ruby-configurate 0.0.8-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 144 kB
  • ctags: 55
  • sloc: ruby: 666; makefile: 5
file content (23 lines) | stat: -rw-r--r-- 683 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module Configurate; module Provider
  # This provider knows nothing upon initialization, however if you access
  # a setting ending with +=+ and give one argument to that call it remembers
  # that setting, stripping the +=+ and will return it on the next call
  # without +=+.
  class Dynamic < Base
    def initialize
      @settings = {}
    end
    
    def lookup_path(setting_path, *args)      
      key = setting_path.to_s
      
      if setting_path.is_setter? && args.length > 0
        value = args.first
        value = value.get if value.respond_to?(:_proxy?) && value._proxy?
        @settings[key] = value
      end
      
      @settings[key]
    end
  end
end; end