lita-nexus 0.1.4 → 0.1.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: cdedb055bad656c003bed738c51b912957953c80
4
- data.tar.gz: c182af5095912972b6fb58916e67a4ff392512be
3
+ metadata.gz: 69045aaefe93e6badeeeacb7e6dcfaecfca18c87
4
+ data.tar.gz: ec2d5e2de3a02e8a7b4d9f601d74ed2faaa94a8e
5
5
  SHA512:
6
- metadata.gz: 339d536f1192d074d4eb4507d56fe006ea3303fe0d031f1cc139a3ad6ffcb7009e223e17e4f98e3ba6f85d55be09efaba8db3c7bd812ed5a3db5e4f4ab3b0722
7
- data.tar.gz: 58f36b9d550769b5655161f794e5cc3b66a67b064c92ab8b7311cb814f5c0a087cca9a5650b1ca39a307c9dfed885494b08ba6b9c03a115831f7e81bfde79b6e
6
+ metadata.gz: 54a15ed4f59dec0faf6c648aeffc8d1b1636537ca30f65c1a8fddcff35c26b436269f870b959820b44fb10623cdb3a207530dd3cf91a1a68a432076736eb2a55
7
+ data.tar.gz: 391d89c42ed8d13f3786407be517c016ffb6197bfc146b5097748298fa0629703b3224e8ffc4d6af6e2919d18d0d1afffc9156b6b7537739999aa8f85fa39852
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
1
  # Change Log
2
+
3
+ ## 0.1.5
4
+ * Fixing search result output
5
+
2
6
  ## 0.1.4
3
7
  * Use test artifact in docker container
4
8
  * Split search artifact result into multiple messages.
@@ -104,7 +104,7 @@ module Lita
104
104
  data = dom.xpath('//artifact')
105
105
  data.each do |artifact|
106
106
  #response.reply data.to_s.gsub('\\n', '\n')
107
- response.reply data.to_xml(:indent => 2)
107
+ response.reply artifact.to_xml(:indent => 2)
108
108
  end
109
109
  end
110
110
 
data/lita-nexus.gemspec CHANGED
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |spec|
2
2
  spec.name = "lita-nexus"
3
- spec.version = "0.1.4"
3
+ spec.version = "0.1.5"
4
4
  spec.authors = ["Wang, Dawei"]
5
5
  spec.email = ["dwang@entertainment.com"]
6
6
  spec.description = "Lita Nexus Operations"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lita-nexus
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Wang, Dawei
@@ -142,6 +142,7 @@ files:
142
142
  - lib/nexushelper/remote.rb
143
143
  - lita-nexus.gemspec
144
144
  - locales/en.yml
145
+ - spec/fixtures/file/maven-reporting-api-2.0.9.jar
145
146
  - spec/lita/handlers/nexus_spec.rb
146
147
  - spec/spec_helper.rb
147
148
  - templates/.gitkeep
@@ -171,5 +172,6 @@ signing_key:
171
172
  specification_version: 4
172
173
  summary: Nexus server related operations
173
174
  test_files:
175
+ - spec/fixtures/file/maven-reporting-api-2.0.9.jar
174
176
  - spec/lita/handlers/nexus_spec.rb
175
177
  - spec/spec_helper.rb