configuration-in-hiera
Robert Gerus 2015-04-16 10:37:37 +02:00
parent 137e0eb0a8
commit fa8ee9d02e
1 changed files with 3 additions and 2 deletions

View File

@ -3,8 +3,9 @@ require 'nokogiri'
Client.register_command("bug") { |args|
if args[0] =~ /^[0-9]+$/ then
doc = Nokogiri::HTML(Net::HTTP.get(URI(Config.lookup("commands::bug::url") + args:0)))
:Config.lookup("commands::bug::url") + args:0, doc.title().delete!('\n'),
doc = Nokogiri::HTML(Net::HTTP.get(URI(Config.lookup("commands::bug::url") + args[0])))
[
Config.lookup("commands::bug::url") + args[0], doc.title().delete!('\n'),
doc.xpath('//span[@id="static_bug_status"]').inner_text.split,
doc.xpath('//td[@id="field_container_product"]').inner_text,
].join('; ')