haplo 2.5.7-java → 2.5.8-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/haplo.gemspec +2 -2
- data/lib/debuggers.rb +3 -3
- data/lib/haplo-templates.jar +0 -0
- data/lib/version.txt +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f33dce3e3287a666a9f3731260e024689c4ab281fbe16e4266f54e2adb67d8e3
|
|
4
|
+
data.tar.gz: d68f46deb40a4f20e7c0c4d6143b2706aceab976ecab3763cacdcc091bb9263a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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.
|
|
7
|
-
s.date = '
|
|
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/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/haplo-templates.jar
CHANGED
|
Binary file
|
data/lib/version.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
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.
|
|
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:
|
|
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.
|
|
74
|
+
rubygems_version: 2.7.6
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|
|
77
77
|
summary: Haplo Plugin Tool
|