module DTK::Client::JenkinsClient::ConfigXML
Constants
- ConfigXMLTemplateAssembly
- ConfigXMLTemplateServiceModule
Public Class Methods
generate_assembly_project(assembly_id)
click to toggle source
# File lib/command_helpers/jenkins_client/config_xml.rb, line 31 def self.generate_assembly_project(assembly_id) #TODO: not using branch argument #TODO: did not put in module_id yet template_bindings = { :assembly_id => assembly_id } ConfigXMLTemplateAssembly.result(template_bindings) end
generate_service_module_project(repo_url,module_id,branch)
click to toggle source
TODO: this is not working now
# File lib/command_helpers/jenkins_client/config_xml.rb, line 23 def self.generate_service_module_project(repo_url,module_id,branch) #TODO: not using branch argument #TODO: did not put in module_id yet template_bindings = { :repo_url => repo_url } ConfigXMLTemplateServiceModule.result(template_bindings) end