Module: PuppetDebugger::Support::Functions
- Included in:
- PuppetDebugger::Support
- Defined in:
- lib/puppet-debugger/support/functions.rb
Instance Method Summary collapse
-
#function_files ⇒ Object
returns a array of function files which is only required when displaying the function map, puppet will load each function on demand in the future we may want to utilize the puppet loaders to find these things.
-
#function_map ⇒ Object
returns a map of functions.
-
#lib_dirs(module_dirs = modules_paths) ⇒ Object
gather all the lib dirs.
-
#load_lib_dirs(module_dirs = modules_paths) ⇒ Object
load all the lib dirs so puppet can find the functions at this time, this function is not being used.
-
#mod_finder ⇒ Object
returns either the module name or puppet version.
Instance Method Details
#function_files ⇒ Object
returns a array of function files which is only required when displaying the function map, puppet will load each function on demand in the future we may want to utilize the puppet loaders to find these things
8 9 10 11 12 13 14 15 16 17 18 |
# File 'lib/puppet-debugger/support/functions.rb', line 8 def function_files search_dirs = lib_dirs.map do |lib_dir| [File.join(lib_dir, 'puppet', 'functions', '**', '*.rb'), File.join(lib_dir, 'functions', '**', '*.rb'), File.join(lib_dir, 'puppet', 'parser', 'functions', '*.rb')] end # add puppet lib directories search_dirs << [File.join(puppet_lib_dir, 'puppet', 'functions', '**', '*.rb'), File.join(puppet_lib_dir, 'puppet', 'parser', 'functions', '*.rb')] Dir.glob(search_dirs.flatten) end |
#function_map ⇒ Object
returns a map of functions
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'lib/puppet-debugger/support/functions.rb', line 26 def function_map unless @functions do_initialize @functions = {} function_files.each do |file| obj = {} name = File.basename(file, '.rb') obj[:name] = name obj[:parent] = mod_finder.match(file)[1] @functions["#{obj[:parent]}::#{name}"] = obj end end @functions end |
#lib_dirs(module_dirs = modules_paths) ⇒ Object
gather all the lib dirs
42 43 44 45 46 47 |
# File 'lib/puppet-debugger/support/functions.rb', line 42 def lib_dirs(module_dirs = modules_paths) dirs = module_dirs.map do |mod_dir| Dir["#{mod_dir}/*/lib"].entries end.flatten dirs + [puppet_repl_lib_dir] end |
#load_lib_dirs(module_dirs = modules_paths) ⇒ Object
load all the lib dirs so puppet can find the functions at this time, this function is not being used
51 52 53 54 55 |
# File 'lib/puppet-debugger/support/functions.rb', line 51 def load_lib_dirs(module_dirs = modules_paths) lib_dirs(module_dirs).each do |lib| $LOAD_PATH << lib end end |
#mod_finder ⇒ Object
returns either the module name or puppet version
21 22 23 |
# File 'lib/puppet-debugger/support/functions.rb', line 21 def mod_finder @mod_finder ||= Regexp.new('\/([\w\-\.]+)\/lib') end |