shelby_arena 0.0.1 → 0.0.2

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: 10481118fe91152ecf2b01b3b9fc330854b95a4f22f73cf6f2992e2b9caa85ad
4
- data.tar.gz: a71771473869f334f87e62899d177dc90f527f48a524d325ac6a3c16c98fb36f
3
+ metadata.gz: 6e8fd72eb3fa12747e89e9d971b40f72ff0d126e6ce7fb818a9b6ffb729755c6
4
+ data.tar.gz: 5079761d76b407b6b1e4fa887fdf63abb6ede3ff5b2a695abbbe5eceed33ade1
5
5
  SHA512:
6
- metadata.gz: c8cd1b36bf96c30003a42ecf07844d2186d495576b1833c181fdaed3de608cc787515218bf561916275c7359a0f32a6b262dd18725bf9c2b7b4e921a2e612c94
7
- data.tar.gz: 72d7b0bde4b069746f87c44b679c5432c48e51e36b7fc4cbb611d170be7dd59811d9459cf203c682ab887adebaa69ae332742f121d99d8ac969f067edc4e718b
6
+ metadata.gz: 17e681850dac47c0dcb42574502b6e7de41e60c838cb4ab8521fbbb475b66b3e33541242caba9b7dd134d5143b5ba91512abe7209202256ad5e72e456b9de0c2
7
+ data.tar.gz: eb764b5758d79f21016f7478ace6dbca0de34fba04ac85c07a1d5967bd1895550de520c5784dbe8eae8d380b7dcdcf80b8653bc19633a87898b4246c43ce0077
data/.ruby-version CHANGED
@@ -1 +1,2 @@
1
1
  2.7.4
2
+
@@ -1,12 +1,18 @@
1
1
  module ShelbyArena
2
2
  class Client
3
3
  module Batch
4
- def list_batches(options = {})
4
+ def list_batches(name: nil, start_date: nil, end_date: nil)
5
5
  path = 'batch/list'
6
+ options = {}
7
+
8
+ options[:batchName] = name if name
9
+ options[:startDate] = start_date if start_date
10
+ options[:endDate] = end_date if end_date
11
+
6
12
  options[:api_sig] = generate_api_sig(path, options)
7
13
 
8
14
  res = get(path, options.sort)
9
- Response::Batch.format(res.dig('BatchListResult', 'Batches', 'Batch'))
15
+ Response::Batch.format_list(res.dig('BatchListResult', 'Batches', 'Batch'))
10
16
  end
11
17
 
12
18
  def find_batch(id, options = {})
@@ -29,13 +35,14 @@ module ShelbyArena
29
35
  options[:api_sig] = generate_api_sig(path, options)
30
36
  json_body = body.to_json
31
37
 
32
- json_post("#{path}?api_session=#{options[:api_session]}&api_sig=#{options[:api_sig]}", json_body)
38
+ res = json_post("#{path}?api_session=#{options[:api_session]}&api_sig=#{options[:api_sig]}", json_body)
39
+
40
+ res.dig('ModifyResult', 'Link').split('/').last
33
41
  end
34
42
 
35
43
  def delete_batch(id, options = {})
36
44
  path = "batch/#{id}"
37
45
  options[:api_sig] = generate_api_sig(path, options)
38
- require 'pry'; binding.pry
39
46
  delete(path, options.sort)
40
47
  end
41
48
  end
@@ -7,11 +7,26 @@ module ShelbyArena
7
7
  new(data).format
8
8
  end
9
9
 
10
+ def self.format_list(data)
11
+ new(data).format_list
12
+ end
13
+
10
14
  def initialize(data)
11
15
  @data = data
12
16
  end
13
17
 
18
+ def format_list
19
+ res = format
20
+
21
+ return [] if res.nil?
22
+ return [res] if res.is_a?(Hash)
23
+
24
+ res
25
+ end
26
+
14
27
  def format
28
+ return nil if data.nil?
29
+
15
30
  if data.is_a?(Array)
16
31
  data.map { |item| format_single(item) }
17
32
  else
@@ -1,3 +1,3 @@
1
1
  module ShelbyArena
2
- VERSION = '0.0.1'.freeze
2
+ VERSION = '0.0.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shelby_arena
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Taylor Brooks
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-04 00:00:00.000000000 Z
11
+ date: 2024-02-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday