haveapi-client 0.14.0 → 0.14.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e057fb019eb27f25b11bfeae4459672d87429111c49d57573a4071dc117bc731
4
- data.tar.gz: def4beeeaaef2272452641faeee82f5fa9383e06c892c9f38ab3dcbbdce7775c
3
+ metadata.gz: 987307c7409922b6d622426644e8dc7d28ccc8a1115136249e190d8bf4bc129d
4
+ data.tar.gz: 677a4520cbf5ecfbfdba72cc1b2f50e94d9bc151b62f35d0546e35d84128ccdd
5
5
  SHA512:
6
- metadata.gz: 996154c2f4e58ac56014240871205b7815326b11bcdb5c5f16708f318c6960698edbae2a08dcca19c6668848bbea871559d602be6cdf17c99fb4b2875bbf92cc
7
- data.tar.gz: 18ad80e51d76b2a17ec31e4739b0d192438d5b43846c335f167ba23b3c0c1592a95f13737555864127624fb0cf81d2ad34d1c5434b9173d72ab96939dbc08182
6
+ metadata.gz: 854d2e6b3f9e592ee94122d00bf39aac12250d0bd29d1c2729b9636068e36d936418dc5f9f4cfb9ad8c78043d5758e3b34e2ec7ce5a5c2ee4cbf459b885c4a97
7
+ data.tar.gz: 3b16ef15d2d1ed6151c172d1237f10abb5dc7a8bdb975dc9853243306004c77d891d1cf697c689bd679f80dc9ec73810dc487b044bf71bb4112455fd6f681b5d
@@ -5,8 +5,8 @@ module HaveAPI::CLI
5
5
  f.format
6
6
  end
7
7
 
8
- def self.print(*args)
9
- f = new(*args)
8
+ def self.print(*args, **kwargs)
9
+ f = new(*args, **kwargs)
10
10
  f.print
11
11
  end
12
12
 
@@ -84,7 +84,7 @@ module HaveAPI::CLI
84
84
  def generate
85
85
  return if @cols.empty?
86
86
  prepare
87
-
87
+
88
88
  case @layout
89
89
  when :columns
90
90
  columns
@@ -113,7 +113,7 @@ module HaveAPI::CLI
113
113
  i += 1
114
114
  ret
115
115
  end.join(' ')
116
-
116
+
117
117
  line sprintf(formatters, * @cols.map { |c| c[:label] }) if @header
118
118
 
119
119
  @str_objects.each do |o|
@@ -128,7 +128,7 @@ module HaveAPI::CLI
128
128
  @str_objects.each do |o|
129
129
  @cols.each_index do |i|
130
130
  c = @cols[i]
131
-
131
+
132
132
  if o[i].is_a?(::String) && o[i].index("\n")
133
133
  lines = o[i].split("\n")
134
134
  v = ([lines.first] + lines[1..-1].map { |l| (' ' * (w+3)) + l }).join("\n")
@@ -139,7 +139,7 @@ module HaveAPI::CLI
139
139
 
140
140
  line sprintf("%#{w}s: %s", c[:label], v)
141
141
  end
142
-
142
+
143
143
  line
144
144
  end
145
145
  end
@@ -155,10 +155,10 @@ module HaveAPI::CLI
155
155
 
156
156
  def prepare
157
157
  @str_objects = []
158
-
158
+
159
159
  each_object do |o|
160
160
  arr = []
161
-
161
+
162
162
  @cols.each do |c|
163
163
  v = o[ c[:name] ]
164
164
  str = (c[:display] ? c[:display].call(v) : v)
@@ -190,7 +190,7 @@ module HaveAPI::CLI
190
190
 
191
191
  def col_width(i, c)
192
192
  w = c[:label].to_s.length
193
-
193
+
194
194
  @str_objects.each do |o|
195
195
  len = o[i].to_s.length
196
196
  w = len if len > w
@@ -13,7 +13,7 @@ module HaveAPI::Client
13
13
  end
14
14
 
15
15
  def execute(data, *_)
16
- args = [self]
16
+ params_arg = {}
17
17
 
18
18
  if input
19
19
  params = Params.new(self, data)
@@ -22,10 +22,10 @@ module HaveAPI::Client
22
22
  raise ValidationError.new(self, params.errors)
23
23
  end
24
24
 
25
- args << params.to_api << {}
25
+ params_arg = params.to_api
26
26
  end
27
27
 
28
- ret = @api.call(*args)
28
+ ret = @api.call(self, params_arg)
29
29
  reset
30
30
  ret
31
31
  end
@@ -1,6 +1,6 @@
1
1
  module HaveAPI
2
2
  module Client
3
3
  PROTOCOL_VERSION = '2.0'
4
- VERSION = '0.14.0'
4
+ VERSION = '0.14.1'
5
5
  end
6
6
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: haveapi-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.14.0
4
+ version: 0.14.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jakub Skokan
@@ -198,7 +198,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
198
198
  - !ruby/object:Gem::Version
199
199
  version: '0'
200
200
  requirements: []
201
- rubygems_version: 3.2.24
201
+ rubygems_version: 3.2.26
202
202
  signing_key:
203
203
  specification_version: 4
204
204
  summary: Ruby API and CLI for HaveAPI