cirro-ruby-client 1.0.0 → 1.0.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: f0fbe216e1f99f00cbe0816f9286960f5ba85335a287bef40971113cc6af06d2
4
- data.tar.gz: e4d958b0906bff2a9db8d21467145d461772f80f652b229c0d845a4b0d6c5c8d
3
+ metadata.gz: 33ba087b63705ed300fa9958de71d00e2dca208356662f8a82c4e6a66b81d141
4
+ data.tar.gz: 6e7a7a20f585108f3e7b8954a1413621ca57ee1b5ff60a969deacabb2e224b52
5
5
  SHA512:
6
- metadata.gz: bafe646924a4152758f62c9db242ed3fa76ce8c44a711e325a59f4ce7baabf8290a5adbc96aa5c8fbd0259e6b444fde3d0bff68acbbb1c5e54467edcb11f725b
7
- data.tar.gz: 2bfe4d104223034dbc9f5ed82434ccf3e6ddd42dcc06cfded2da855b460e5a7c642df4d9c4b2c621b77f679716d015f3068f473522a8fdb143074232374f1fcd
6
+ metadata.gz: 495c530ff6247607095004c4c744b71f7e2db27dddaeaf5d494d87b7119ef0c24d550cf12ebcea3944610b0a631e92fcc04d10ccfefba21b738f2a720faf4e60
7
+ data.tar.gz: b921117207120ee50213c281bcdda1d9bebae3ca57ec4e506d8999611a7d1a539e57f373b95f1555697ee485fcc8bc944413a5f3f375697850f10a22167fe628
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cirro-ruby-client (0.1.3)
4
+ cirro-ruby-client (1.0.1)
5
5
  json_api_client
6
6
  jwt
7
7
 
@@ -4,6 +4,7 @@ require 'cirro_io/client/configuration'
4
4
  require 'cirro_io/client/response_debugging_middleware'
5
5
  require 'cirro_io/client/jwt_authentication'
6
6
  require 'cirro_io/client/base'
7
+ require 'cirro_io/client/gig_invitation'
7
8
  require 'cirro_io/client/app_user'
8
9
  require 'cirro_io/client/app_worker'
9
10
 
@@ -2,6 +2,7 @@ module CirroIO
2
2
  module Client
3
3
  class AppWorker < Base
4
4
  has_one :app_user
5
+ has_many :gig_invitations
5
6
 
6
7
  def self.resource_name
7
8
  'app-workers'
@@ -0,0 +1,9 @@
1
+ module CirroIO
2
+ module Client
3
+ class GigInvitation < Base
4
+ def self.resource_name
5
+ 'gig-invitations'
6
+ end
7
+ end
8
+ end
9
+ end
@@ -1,7 +1,7 @@
1
1
  # rubocop:disable Style/MutableConstant
2
2
  module CirroIO
3
3
  module Client
4
- VERSION = '1.0.0'
4
+ VERSION = '1.0.1'
5
5
  end
6
6
  end
7
7
  # rubocop:enable Style/MutableConstant
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cirro-ruby-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Cirro Dev Team
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-10-14 00:00:00.000000000 Z
11
+ date: 2020-11-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jwt
@@ -65,6 +65,7 @@ files:
65
65
  - lib/cirro_io/client/app_worker.rb
66
66
  - lib/cirro_io/client/base.rb
67
67
  - lib/cirro_io/client/configuration.rb
68
+ - lib/cirro_io/client/gig_invitation.rb
68
69
  - lib/cirro_io/client/jwt_authentication.rb
69
70
  - lib/cirro_io/client/response_debugging_middleware.rb
70
71
  - lib/cirro_io/client/version.rb