Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我是詹金斯的新手。我想使用 ruby gem jenkins_api_client 在 jenkins 中添加一个新视图。谁能帮我举一个小例子,使用该 gem 添加新视图?
我能够通过使用以下代码来做到这一点
require "jenkins_api_client" @client = JenkinsApi::Client.new(:server_url => 'http://ip:port/jenkins/') @client.view.create_list_view(:name => "NewView")
以前,我使用的是 :server_ip ,因为我在 url 中有 jenkins 前缀,所以我收到了一个错误。但使用 :server_url 解决了它。
可能对某人有帮助。