haveapi-client 0.26.0 → 0.26.2
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/lib/haveapi/cli/cli.rb +1 -1
- data/lib/haveapi/client/version.rb +1 -1
- metadata +2 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0167a2a447473ea9c29f3f4e2e6901993f5c20a7cf57fa6abb3330f45d30c5ae
|
4
|
+
data.tar.gz: 64ec04717e12568819426a862ee3d1acce20323e6be6a607fb6fa0f165431c3e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 512b1e74055011e5c3ffaad932e0a35663c546d7fc41494a15b842a15bf206be1b0c1398860913591f8518ed2cec58c1e03a16eec5e0c6b1a66d235202ceed6b
|
7
|
+
data.tar.gz: 5a332edfd9a64aeae38296b21b8ba45ffe0f3e486cad8f5927c7f0cbff253e3a8f648fd70893e9d29fae7c1a83480873849a268b209bf7aebeb9cf6141ded707
|
data/lib/haveapi/cli/cli.rb
CHANGED
@@ -675,7 +675,7 @@ module HaveAPI::CLI
|
|
675
675
|
end
|
676
676
|
|
677
677
|
def parse_action_param(name, value)
|
678
|
-
if @opts[:raw_values] || !value.start_with?('@')
|
678
|
+
if @opts[:raw_values] || !value.is_a?(::String) || !value.start_with?('@')
|
679
679
|
value
|
680
680
|
elsif value.start_with?('@@')
|
681
681
|
value[1..]
|
metadata
CHANGED
@@ -1,11 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: haveapi-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.26.
|
4
|
+
version: 0.26.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jakub Skokan
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
10
|
date: 1980-01-01 00:00:00.000000000 Z
|
@@ -156,7 +155,6 @@ homepage: ''
|
|
156
155
|
licenses:
|
157
156
|
- MIT
|
158
157
|
metadata: {}
|
159
|
-
post_install_message:
|
160
158
|
rdoc_options: []
|
161
159
|
require_paths:
|
162
160
|
- lib
|
@@ -171,8 +169,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
171
169
|
- !ruby/object:Gem::Version
|
172
170
|
version: '0'
|
173
171
|
requirements: []
|
174
|
-
rubygems_version: 3.
|
175
|
-
signing_key:
|
172
|
+
rubygems_version: 3.6.6
|
176
173
|
specification_version: 4
|
177
174
|
summary: Ruby API and CLI for HaveAPI
|
178
175
|
test_files: []
|