satisfactory 0.3.1 → 0.3.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: eb0881c675798a625a5af2ba2837a9689191df29051a54c12f3e0f6e38a948d7
4
- data.tar.gz: cfe749028066a66f517679c6132e6d5a884b673e4bf5f3c329aadc4cb43acaf4
3
+ metadata.gz: 915da7628e8d2a2a45e1fd5a42276a127504b185c249059b9ca49e82b7ebbbfb
4
+ data.tar.gz: 0cd34777d16800c60f06d110cae144aedd917bedaa97547d05f3a5fe9b227598
5
5
  SHA512:
6
- metadata.gz: 87e998bfc2817381695b8b16a212fe5d328db770549613dbe962406574446f8017f77d068f5ea447df97b2abe75710662544500fae9728855e167c3915b6b737
7
- data.tar.gz: 442023301434a224e7b3b71f36762a21432ef681cdf9951672286c6377454649aa4fea7abd8f3e93e5de79f17587f0cc0c8f7e1398c61239dc6f6dc0dedc85ab
6
+ metadata.gz: 346c97b449dee22e38d1317d0d1be607575d5c041c019a87a65032367a6827a3b8d2269e72809cf608b194e41bd0b2c33945ee94bb88b558347d1921a580657b
7
+ data.tar.gz: 67194694a40952bb2001868189d1e58d1f3ff4028b8a84832104dfb6371871ce76acb7cfe7074d0cb64ada111073dcedd215d64dbc054f000e16a064ea1079fb
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.3.2] - 2023-01-24
4
+
5
+ - Add some missing proxy methods
6
+
3
7
  ## [0.3.1] - 2023-01-18
4
8
 
5
9
  - Fix associations bug
@@ -47,6 +47,7 @@ module Satisfactory
47
47
  def and_same(upstream_type)
48
48
  Satisfactory::UpstreamRecordFinder.new(upstream:).find(upstream_type)
49
49
  end
50
+ alias return_to and_same
50
51
 
51
52
  # @api private
52
53
  def build
@@ -18,7 +18,11 @@ module Satisfactory
18
18
  # Delegates to the upstream record.
19
19
  # @return (see Satisfactory::Record#with_new)
20
20
  # @see Satisfactory::Record#with_new
21
- delegate :create, :with_new, to: :upstream
21
+ # @!method to_plan
22
+ # Delegates to the upstream record.
23
+ # @return (see Satisfactory::Record#with_new)
24
+ # @see Satisfactory::Record#with_new
25
+ delegate :create, :with_new, :to_plan, to: :upstream
22
26
 
23
27
  # Find the upstream record of the given type.
24
28
  #
@@ -1,3 +1,3 @@
1
1
  module Satisfactory
2
- VERSION = "0.3.1".freeze
2
+ VERSION = "0.3.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: satisfactory
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliot Crosby-McCullough
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-01-18 00:00:00.000000000 Z
11
+ date: 2023-01-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: factory_bot_rails
@@ -46,7 +46,7 @@ homepage: https://github.com/SmartCasual/satisfactory
46
46
  licenses:
47
47
  - CC-BY-NC-SA-4.0
48
48
  metadata:
49
- changelog_uri: https://github.com/SmartCasual/satisfactory/blob/v0.3.1/CHANGELOG.md
49
+ changelog_uri: https://github.com/SmartCasual/satisfactory/blob/v0.3.2/CHANGELOG.md
50
50
  homepage_uri: https://github.com/SmartCasual/satisfactory
51
51
  source_code_uri: https://github.com/SmartCasual/satisfactory
52
52
  rubygems_mfa_required: 'true'