haplo 2.5.5-java → 2.5.8-java

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
  SHA256:
3
- metadata.gz: 3b23f0988876ae30e73d8a29209cdef1c334576479713f897f298a4e5b959004
4
- data.tar.gz: b91cd8572efead407346b89a4d3f7afab856885864c108493abe5c541e1800e7
3
+ metadata.gz: f33dce3e3287a666a9f3731260e024689c4ab281fbe16e4266f54e2adb67d8e3
4
+ data.tar.gz: d68f46deb40a4f20e7c0c4d6143b2706aceab976ecab3763cacdcc091bb9263a
5
5
  SHA512:
6
- metadata.gz: 742f15f804aea68c1f494b52d433ce9e98a4e1c24e523614ec553c24739816966c85545829fa1e2c72bf1f150034225f3cf86632fe1ae37d7b6b45e21e823e16
7
- data.tar.gz: 67f1ed97902ab2765e90cf8fbfd79236222ce194b27999ab843aa90f759d64c88b9391624df9e121ee5b88f165e5d579b623df4407bad32df0499ab8b30ce982
6
+ metadata.gz: 6f9aa5828e6e4ff642608d3b9de196c0913cbedcf1b383be7be36e544e92a7cc010e37ba36545e26148ecd4883781773e7cf0a1f2828f65aa3ab25a7590cda81
7
+ data.tar.gz: b768e5f8c1e113b16ad0943379b0f3c88072d65e373ff8c70828e7d83e23a1768dc2a792fc201b20520ad8762f7fdae61ee4a42573a5962cf703849ed0fef789
data/haplo.gemspec CHANGED
@@ -3,8 +3,8 @@ Gem::Specification.new do |s|
3
3
  files = Dir.glob("#{root_dir}/**/*.*").map { |x| x[root_dir.length + 1, x.length]}
4
4
 
5
5
  s.name = 'haplo'
6
- s.version = '2.5.5'
7
- s.date = '2021-07-28'
6
+ s.version = '2.5.8'
7
+ s.date = '2022-05-16'
8
8
  s.summary = "Haplo Plugin Tool"
9
9
  s.description = "Development tools for developing Haplo plugins, see https://haplo.org"
10
10
  s.licenses = ["MPL-2.0"]
data/lib/check.rb CHANGED
@@ -22,7 +22,7 @@ module PluginTool
22
22
  puts
23
23
  if @@check_ok && !@@check_warn
24
24
  puts "PASSED"
25
- elsif @@check_warn
25
+ elsif @@check_ok && @@check_warn
26
26
  puts "PASSED WITH WARNINGS"
27
27
  else
28
28
  puts "FAILED"
data/lib/debuggers.rb CHANGED
@@ -3,7 +3,7 @@
3
3
  # This Source Code Form is subject to the terms of the Mozilla Public
4
4
  # License, v. 2.0. If a copy of the MPL was not distributed with this
5
5
  # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6
-
6
+ # (c) Avalara, Inc 2021
7
7
 
8
8
  module PluginTool
9
9
 
@@ -85,12 +85,12 @@ module PluginTool
85
85
  def self.request_coverage(options)
86
86
 
87
87
  format = options.coverage_format || 'raw'
88
- if format != 'raw'
88
+ if format != 'raw' && format != 'lcov'
89
89
  puts "Unknown coverage format: #{format}"
90
90
  exit 1
91
91
  end
92
92
 
93
- if 'OK' == PluginTool.post("/api/development-plugin-loader/debugger-coverage-start")
93
+ if 'OK' == PluginTool.post("/api/development-plugin-loader/debugger-coverage-start", {:coverage_format => format})
94
94
  puts "Coverage capture started."
95
95
  else
96
96
  puts "Error starting coverage capture."
data/lib/version.txt CHANGED
@@ -1 +1 @@
1
- 64e61a4
1
+ fdf4236
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haplo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.5
4
+ version: 2.5.8
5
5
  platform: java
6
6
  authors:
7
7
  - Haplo Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-28 00:00:00.000000000 Z
11
+ date: 2022-05-16 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Development tools for developing Haplo plugins, see https://haplo.org
14
14
  email: client.services@haplo-services.com
@@ -71,7 +71,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  version: '0'
72
72
  requirements: []
73
73
  rubyforge_project:
74
- rubygems_version: 2.7.9
74
+ rubygems_version: 2.7.6
75
75
  signing_key:
76
76
  specification_version: 4
77
77
  summary: Haplo Plugin Tool