Method: Jenkins::Model::Descriptor#getConfigPage
- Defined in:
- lib/jenkins/model/descriptor.rb
#getConfigPage ⇒ Object
we take a fully-qualified class name, like Abc::Def::GhiJkl to underscore-separated tokens, like abc/def/ghi_jkl and then look for config.* (where *=.erb, .haml, …)
43 44 45 46 47 |
# File 'lib/jenkins/model/descriptor.rb', line 43 def getConfigPage "/#{name_to_path}/config".tap { |path| puts "getConfigPage -> #{path}" } end |