shotgun_api_ruby 0.0.8.3 → 0.0.8.4

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: 06c5375e4155418ae69004dd39b03339072744f2e6d95150c78356d5bf0c16cf
4
- data.tar.gz: 887e4c5b773fb2e20dd24d70a91268db0a67b872bd105d5259dbfe3f7ff1ebcf
3
+ metadata.gz: 40d52da8cf4bb1e972a1a4dd4cd0ec8aa8b572c356dbfa47e6b84ff466a1eb33
4
+ data.tar.gz: 64ee5ecaa4ed9b50fbf1b811ebca28dddf5b3150e99d61824ee327b5913da209
5
5
  SHA512:
6
- metadata.gz: 187e5c60a1dd8a9d2b3e06abc908a085c43f939a90d9312ac78a5d72069fb4456cd3c1ad0aaf9797154b66b48b82ef4064318ee75e31162fdb3bec4361f5b7fb
7
- data.tar.gz: 53b1f6d9f3cccb07f79b83ac257959c586c66f3fcc49859dfcae9bcb9099df76f3ba5b8d8929625a4e44aab9db984395cc160a403b565cd36b4996b0de6a31ff
6
+ metadata.gz: 1caeabca35f814c45e40a477c4130cddc48d15ced65c1854e8db4d56d0574f4cb20ade9e028ccb8c05256c42bb5dcbfb82b30ec3086837ec5f11ea96423fcdd6
7
+ data.tar.gz: b9b6ba452f09ad70cae2a0c961c7a1712dbf21fba4f985ca2ae467c2bee2aa911cab213eecf6dbc73e671367ea8e0204e25b6e039c3ce61d81d0a04d49f43e8f
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.0.8.4] - 2021-01-07
10
+ ### Changed
11
+ - Safer eager_load
12
+
9
13
  ## [0.0.8.3] - 2021-01-07
10
14
  ### Added
11
15
  - eager_load files to fix weird bugs in rspec
@@ -22,6 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
22
26
  - Entities: delete
23
27
  - Entities: revive
24
28
 
25
- [Unreleased]: https://github.com/shotgunsoftware/shotgun_api_ruby/compare/v0.0.8...HEAD
29
+ [Unreleased]: https://github.com/shotgunsoftware/shotgun_api_ruby/compare/v0.0.8.4...HEAD
30
+ [0.0.8.4]: https://github.com/shotgunsoftware/shotgun_api_ruby/releases/tag/v0.0.8.4
31
+ [0.0.8.3]: https://github.com/shotgunsoftware/shotgun_api_ruby/releases/tag/v0.0.8.3
26
32
  [0.0.8]: https://github.com/shotgunsoftware/shotgun_api_ruby/releases/tag/v0.0.8
27
33
  [0.0.7]: https://github.com/shotgunsoftware/shotgun_api_ruby/releases/tag/v0.0.7
@@ -1,18 +1,19 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  # zeitwerk will take care of auto loading files based on their name :)
4
- require "zeitwerk"
4
+ require 'zeitwerk'
5
5
  require 'active_support/core_ext/string/inflections'
6
6
  require 'ostruct'
7
- require "faraday"
7
+ require 'faraday'
8
8
  require 'json'
9
9
 
10
10
  loader = Zeitwerk::Loader.for_gem
11
11
  loader.setup # ready!
12
- loader.eager_load
13
12
 
14
13
  module ShotgunApiRuby
15
14
  def self.new(**args)
16
15
  Client.new(**args)
17
16
  end
18
17
  end
18
+
19
+ loader.eager_load
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShotgunApiRuby
4
- VERSION = "0.0.8.3"
4
+ VERSION = '0.0.8.4'
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.3
4
+ version: 0.0.8.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Denis <Zaratan> Pasin