easy_tags 0.2.1 → 0.2.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: 8a7f8eff9a1c48c2acd73b9e1508a60dd109e1093bc3d1907ac9d59ce84d1e6c
4
- data.tar.gz: ee07bbd270d6430cf8282cb55a081567983c48eeda35c43dc42ed5850f8e4957
3
+ metadata.gz: bb06e1ee49d89ee14b96399332522ffe2a1992d0617ffc21d0205f03d3420d4a
4
+ data.tar.gz: 6d80b72229751717a9c6b2103285ba9666cad97147d1bbe6789ef3c0b75d85c2
5
5
  SHA512:
6
- metadata.gz: '029a2218a20846732ad35ad4ee9801f242933624fa49dea7eb8ebd524c07c5bb477a83ff99fba5cae7aebb14bbac538b525e3ebfddcd02d6c43624d46d87d830'
7
- data.tar.gz: 172a6b5c1af8643153b582e2bf04a3b3245214eea0f06ad52b7582099c11b0d11f815ab11679cf2f6a110571fcf791ec0e7a55eb601868a6c9a474aca784104d
6
+ metadata.gz: 79e003d812d2f74ffdff9355ad09619cbfc8a5ea21cecccff36fcf0fee825a041897146c791bddf58c9b1b94ccf5d7704c86256c80e4666c4ae525ecf5148c4f
7
+ data.tar.gz: 3804f90c2bc81ce007f59a8d710c2f2749df7cd3cc9a2316b818bb4178731700bd8830528f9c0622e1c1d948e919f7518c43380076047e8c9cdf010adffb389e
@@ -6,9 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.2.2] - 2019-10-24
10
+ ### Fixed
11
+ - Fixed inspect and compare for context objects (delegate to tags list) that may have affected debug and testing
12
+
9
13
  ## [0.2.1] - 2019-10-24
10
14
  ### Fixed
11
- - Fix `.add` and `.remove` methods not implementing properly dirty behavior
15
+ - Fixed `.add` and `.remove` methods not implementing properly dirty behavior
12
16
 
13
17
  ## [0.2.0] - 2019-09-12
14
18
  ### Added
@@ -18,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
22
  Initial release
19
23
 
20
24
  [Unreleased]: https://github.com/iiwo/easy_tagscompare/v0.2.0...HEAD
25
+ [0.2.1]: https://github.com/iiwo/easy_tags/compare/v0.2.1...v0.2.2
21
26
  [0.2.1]: https://github.com/iiwo/easy_tags/compare/v0.2.0...v0.2.1
22
27
  [0.2.0]: https://github.com/iiwo/easy_tags/compare/v0.1.0...v0.2.0
23
28
  [0.1.0]: https://github.com/iiwo/easy_tags/releases/tag/v0.1.0
@@ -69,9 +69,7 @@ module EasyTags
69
69
  end
70
70
  end
71
71
 
72
- def ==(other)
73
- to_a == other.to_a
74
- end
72
+ delegate :==, :<=>, :to_s, :inspect, :hash, to: :tags
75
73
 
76
74
  private
77
75
 
@@ -1,3 +1,3 @@
1
1
  module EasyTags
2
- VERSION = '0.2.1'.freeze
2
+ VERSION = '0.2.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iwo Dziechciarow