Class: App::Config::RUBY
- Inherits:
-
Hash
- Object
- Hash
- App::Config::RUBY
- Includes:
- Base
- Defined in:
- lib/app/config/ruby.rb
Constant Summary collapse
- DEFAULT_MASK =
"*.rb"- DEFAULT_SUFFIX =
".rb"- DEFAULT_ENCODE =
{}
- DEFAULT_DECODE =
{}
Instance Method Summary collapse
-
#initialize(**opts) ⇒ RUBY
constructor
A new instance of RUBY.
-
#load(section) ⇒ Object
load configuration.
-
#load_overlay(filename) ⇒ Object
load configuration.
- #pretty_text(hash) ⇒ Object
-
#reload(root: nil, path: nil, encode: nil, decode: nil) ⇒ Object
bulk load configuration in search paths.
-
#reset(section) ⇒ Object
remove and load configuration.
-
#save(section) ⇒ Object
save configuration.
- #savepathname(section) ⇒ Object
Constructor Details
#initialize(**opts) ⇒ RUBY
Returns a new instance of RUBY.
17 18 19 20 |
# File 'lib/app/config/ruby.rb', line 17 def initialize( **opts ) super() reload( **opts ) end |
Instance Method Details
#load(section) ⇒ Object
load configuration.
40 41 42 43 44 45 |
# File 'lib/app/config/ruby.rb', line 40 def load( section ) raise ArgumentError, "'#{ section }' is not String." unless String === section self[section].clear ( section + DEFAULT_SUFFIX ) end |
#load_overlay(filename) ⇒ Object
load configuration.
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
# File 'lib/app/config/ruby.rb', line 48 def ( filename ) @paths.each do |path| begin dirname = ::File.( path ) if ::Dir.exist?( dirname ) ::Dir.glob( "#{ dirname }/#{ filename }" ) do |pathname| text = ::File.open( pathname ).read rescue raise( ArgumentError, "could not load #{ pathname }" ) hash = eval( text ) self.deeply_merge!( hash ) end end rescue => e STDERR.puts e. end end end |
#pretty_text(hash) ⇒ Object
75 76 77 |
# File 'lib/app/config/ruby.rb', line 75 def pretty_text( hash ) hash.pretty_inspect end |
#reload(root: nil, path: nil, encode: nil, decode: nil) ⇒ Object
bulk load configuration in search paths.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/app/config/ruby.rb', line 23 def reload( root: nil, path: nil, encode: nil, decode: nil ) clear @root = root || Dir.pwd @paths = ( path || DEFAULT_PATH ).gsub('$ROOT', @root).split(':') @paths = @paths.map{|it| !it.nil? && !it.empty? ? it : nil}.compact @paths << "." if @paths.empty? @vardir = @paths.last Dir.mkdir( @vardir ) unless ::Dir.exist?( @vardir ) @encode = DEFAULT_ENCODE.merge( encode || {} ) @decode = DEFAULT_DECODE.merge( decode || {} ) ( DEFAULT_MASK ) end |
#reset(section) ⇒ Object
remove and load configuration.
80 81 82 83 84 85 86 |
# File 'lib/app/config/ruby.rb', line 80 def reset( section ) raise ArgumentError, "'#{ section }' is not String." unless String === section pathname = savepathname(section) ::FileUtils.remove( pathname ) if ::File.exist?( pathname ) load( section ) end |
#save(section) ⇒ Object
save configuration.
66 67 68 69 70 71 72 73 |
# File 'lib/app/config/ruby.rb', line 66 def save( section ) raise ArgumentError, "'#{ section }' is not String." unless String === section pathname = savepathname(section) hash = { section => self[section] }.deeply_stringify_keys ::File.open( pathname, "w" ) do |file| file.puts( pretty_text( hash ) ) end end |
#savepathname(section) ⇒ Object
88 89 90 |
# File 'lib/app/config/ruby.rb', line 88 def savepathname( section ) ::File.join( @vardir, section + DEFAULT_SUFFIX ) end |