shotgun_api_ruby 0.0.8 → 0.0.8.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3ae703829a60a9216ec532dd7d90c627bc15cab08a766ba245a90f67f7bff696
4
- data.tar.gz: b7dfe8b5ecfe096ea87986eb5c4e292919503133e8baea2d115405ae52d349bb
3
+ metadata.gz: c58655d9c399480e25618d491ef8b7a97b8c25799e609a160f92dc04894a8fce
4
+ data.tar.gz: 4599acaba201d0fee1f87682f3202bda2dd1666f19313acdf060f2904a0fc4a9
5
5
  SHA512:
6
- metadata.gz: 9b9463f3e579cd14c74036e25691ccb73a296268a2729b188dd52453f459287c5c212ed357a48c06b6e41376a018fe7a79c5f88e9ff8b577abaa1bcc1b9b852b
7
- data.tar.gz: 972f60041a6f0025c3691d4ed44ae08991b1b544030a59cbba61bbcbadf55ff6061032826a483572d37e3e23a12deddf6005d78870de9b84429fbdcceb5fc550
6
+ metadata.gz: e0e7496a2d18e64fc57d98e3fc5baae6e7bed36c120ca8b75ae88021f806e6e43096a589898c8e4c58398d181a530a7f9af6db167783dd1327179d0597528430
7
+ data.tar.gz: 28219de40f5834ef1088158bf1ef724f2780b78b3b7571be92f746d242591e5f77e9aef7633341a9d5596c3d201a07a4c6ee5a301663c4cb173311a3a77a9108
@@ -19,3 +19,5 @@ jobs:
19
19
  run: 'git diff main lib/shotgun_api_ruby/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?"'
20
20
  - name: Verify if higher version
21
21
  run: '[[ $(git diff main lib/shotgun_api_ruby/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") > $(git diff main lib/shotgun_api_ruby/version.rb | grep -E "^-.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?") ]]'
22
+ - name: Verify if version is updated in Gemfile.lock
23
+ run: '[[ $(cat Gemfile.lock | grep "$(git diff main lib/shotgun_api_ruby/version.rb | grep -E "^\+.*VERSION" | grep -E -o "[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+)?")") ]]'
@@ -53,7 +53,7 @@ module ShotgunApiRuby
53
53
  )
54
54
  end
55
55
 
56
- def create(**attributes)
56
+ def create(attributes)
57
57
  resp =
58
58
  @connection.post('', attributes.to_json) do |req|
59
59
  req.headers['Content-Type'] = 'application/json'
@@ -75,7 +75,7 @@ module ShotgunApiRuby
75
75
  )
76
76
  end
77
77
 
78
- def update(id, **changes)
78
+ def update(id, changes)
79
79
  return find(id) if changes.empty?
80
80
 
81
81
  resp =
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShotgunApiRuby
4
- VERSION = "0.0.8"
4
+ VERSION = "0.0.8.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shotgun_api_ruby
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.0.8.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis <Zaratan> Pasin