seatsio 47.4.0 → 48.1.0

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: 681ba6d999bc5b48fa295d0f6c4160bc2de6d61d005b4d85596dccd2884bcecf
4
- data.tar.gz: c99824acd3a684672ce1565025805878fa1ab5eaf81e053441605b896404b1bf
3
+ metadata.gz: 14d6f7a47aa6aad627cb816296d35abcdd0c816bb4b5de649dc143614751bfaa
4
+ data.tar.gz: 473ecbd80802a9af1902f064a3a6170933d81b59e0abc4490e29816dcd3d7d4b
5
5
  SHA512:
6
- metadata.gz: c55c8d72ecd63c746644bf9399bc19c96984388ca6ed5099420fe9025061e444e4fd55c0c72e6a40cb79c05a9b3c7d1d933b69177344dde2de917ed68cf4a8f4
7
- data.tar.gz: bc768c9143654ce7f3b2d8d785c0b89e87102367b21c3dfa56d61e2c5599a5985df4b7c47e19c5bc88244dd74336df6258ef8789cdfe006896d53d70dc9d96b7
6
+ metadata.gz: 84342d8d84bc24d74d10fd10b157d6a1c51b70df90b4fa6dd83fb8e65167a01a8b1d3b8fd7af101ef4ff3ff70aa293e61cc93db4e41f9681ffbc91ceb55fe4a6
7
+ data.tar.gz: e5c2791fb540a6412ef179e93f4c791af421cc5f466f316cde65b02bca8749d0ef278d1a2fb7a3cbe4c0027c85aafb0268ddd418eae7d83116e8380dbf0528d1
@@ -12,7 +12,7 @@ jobs:
12
12
  runs-on: ubuntu-latest
13
13
  strategy:
14
14
  matrix:
15
- ruby-version: ['2.7', '3.1']
15
+ ruby-version: ['3.0', '3.3']
16
16
 
17
17
  steps:
18
18
  - uses: actions/checkout@v2
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.7.4
1
+ 3.3.0
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- seatsio (47.4.0)
4
+ seatsio (48.1.0)
5
5
  rest-client (~> 2.0, >= 2.0.2)
6
6
 
7
7
  GEM
@@ -20,7 +20,7 @@ GEM
20
20
  mime-types (3.3.1)
21
21
  mime-types-data (~> 3.2015)
22
22
  mime-types-data (3.2021.0225)
23
- minitest (5.20.0)
23
+ minitest (5.21.2)
24
24
  minitest-parallel_fork (2.0.0)
25
25
  minitest (>= 5.15.0)
26
26
  netrc (0.11.0)
data/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  [![Build](https://github.com/seatsio/seatsio-ruby/workflows/Build/badge.svg)](https://github.com/seatsio/seatsio-ruby/actions/workflows/build.yml)
4
4
  [![Gem Version](https://badge.fury.io/rb/seatsio.svg)](https://badge.fury.io/rb/seatsio)
5
5
 
6
- This is the official Ruby client library for the [Seats.io V2 REST API](https://docs.seats.io/docs/api-overview), supporting Ruby 2.7.0+
6
+ This is the official Ruby client library for the [Seats.io V2 REST API](https://docs.seats.io/docs/api-overview), supporting Ruby 3.0+
7
7
 
8
8
  ## Versioning
9
9
 
@@ -260,13 +260,12 @@ module Seatsio
260
260
  end
261
261
 
262
262
  class EventLogItem
263
- attr_reader :id, :workspace_key, :type, :date, :data
263
+ attr_reader :id, :type, :timestamp, :data
264
264
 
265
265
  def initialize(data)
266
266
  @id = data['id']
267
- @workspace_key = data['workspaceKey']
268
267
  @type = data['type']
269
- @date = DateTime.iso8601(data['date'])
268
+ @timestamp = DateTime.iso8601(data['timestamp'])
270
269
  @data = data['data']
271
270
  end
272
271
  end
@@ -1,3 +1,3 @@
1
1
  module Seatsio
2
- VERSION = "47.4.0"
2
+ VERSION = "48.1.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: seatsio
3
3
  version: !ruby/object:Gem::Version
4
- version: 47.4.0
4
+ version: 48.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seats.io
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-01-17 00:00:00.000000000 Z
11
+ date: 2024-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rest-client