super_diff 0.5.1 → 0.5.2

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: 7bdda657427ecef6cf2c8d65b9485b73da6c1ab64dbc0f608ce185028ca8bd6a
4
- data.tar.gz: 7476633c6bf06aee6087fc9156743ac56d83507380f44b2236e6c32710088d9f
3
+ metadata.gz: c861fd38801f1faab083c1e4858be0d3d1b2f51a820187fb7b99c7deb6c7f80b
4
+ data.tar.gz: f927f08a93afab351bfca7450d84baca76f9e06ff8b73800176a7eb94e85a674
5
5
  SHA512:
6
- metadata.gz: 45059e4f3d8932f71d6a7f76afe1694e20687a453a9bacb82b1bc0e7c4ed4ec3fc5db20639a9d799b718761a1f053787ed83a867e9adba1d661cc0c03e26b06d
7
- data.tar.gz: 7efd5ddfd5e753e569ba126eb214657250234c4e3968a92cd6e87ca01907dcb6feb71aaa5491b7938f38e8a7a634355ece2533fb7a30252e4ad93613f5e0eb2e
6
+ metadata.gz: 6cf4d0be42042cc4d5b305c5f3dc3b32b6349b502925e3f5527a7073276cfd8de8ee700634550d28dd69d499a717d663d0400436a5a39698f35e48cd6fbddec6
7
+ data.tar.gz: 86f41e09234a19df5337e1c0bb6f9d49bf456586239dc85e5301b56b7779a9227873b5dc4278e590a966934634a3ace9fa9ac99a1802cd82cdb3e4847bd8103b
data/README.md CHANGED
@@ -11,7 +11,7 @@
11
11
  SuperDiff is a gem that hooks into RSpec
12
12
  to intelligently display the differences between two data structures of any type.
13
13
 
14
- 📢 **[See what's changed in recent versions.][changelog].**
14
+ 📢 **[See what's changed in recent versions.][changelog]**
15
15
 
16
16
  [changelog]: CHANGELOG.md
17
17
 
@@ -199,13 +199,13 @@ Please see the [contributing](./CONTRIBUTING.md) document for more on how to do
199
199
  If there's a change you want implemented, you can choose to sponsor that change!
200
200
  `super_diff` is set up on IssueHunt,
201
201
  so feel free to search for an existing issue (or make your own)
202
- and [add a bounty](https://issuehunt.io/r/mcmire/super_diff/issues).
202
+ and [add a bounty](https://issuehunt.io/r/mcmire/super_diff).
203
203
  I'll get notified right away!
204
204
 
205
205
  ## Compatibility
206
206
 
207
207
  `super_diff` is [tested][travis] to work with
208
- Ruby >= 2.4.x,
208
+ Ruby >= 2.5.x,
209
209
  RSpec 3.x,
210
210
  and Rails >= 5.x.
211
211
 
@@ -1,3 +1,5 @@
1
+ require 'delegate'
2
+
1
3
  module SuperDiff
2
4
  module OperationTrees
3
5
  class Base < SimpleDelegator
@@ -1,3 +1,5 @@
1
+ require 'set'
2
+
1
3
  module SuperDiff
2
4
  module RecursionGuard
3
5
  RECURSION_GUARD_KEY = "super_diff_recursion_guard_key".freeze
@@ -1,3 +1,3 @@
1
1
  module SuperDiff
2
- VERSION = "0.5.1".freeze
2
+ VERSION = "0.5.2".freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: super_diff
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elliot Winkler
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-19 00:00:00.000000000 Z
11
+ date: 2020-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: attr_extras