easy_tags 0.2.5 → 0.2.6

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: bff1e7a35c7c1093f9b32c7e92bc5ec1a77fec676d06e463b22827498aa58383
4
- data.tar.gz: 1e042bd6a98e526f227aa7e98642e014e8505e7d126a4981c537fdc83240f9b0
3
+ metadata.gz: 28e114c5f8de3ceaf5728fecfe910c88464e1eb0067732a7b24bb9c7c5935c89
4
+ data.tar.gz: 064c888f328cfa05f9e3de0c6d0b0b8c90957134ef02ed97ce17140760f5de13
5
5
  SHA512:
6
- metadata.gz: 67d3dab3a3d9d65f77e3510abce3c7a3467a300726e0d109548d32c7076db64bdf3965b6044e4f7c03faaae1c2d6c0a0a13c6de04717b8ebb10df3e3f5d63c05
7
- data.tar.gz: 5869e18439ad14d8f2f0c818e7e719907df1c70bb4db7c307db05a0b4ffd0dc4bea206e72c1d34ee6a5e8eb5ce2018dd49a794b7737b60aa9da1bc8e3b42908f
6
+ metadata.gz: 9b5e9917f9f0e40c441ec4ded539fd6f4179d9dd835d508c28f1ad137c7b968a382013d9a0169f9c6b0abcdbd2f868c000d7e80e61b0176d6dea691092d06aaa
7
+ data.tar.gz: 3265ee7814dea6f750594558e99fe8ab58c5577c61358851e77e6e2c5e480774e4cf9125b2f59ec9d9fb54b26beab0b32af99f8eee800154ae388391408a9018
data/CHANGELOG.md CHANGED
@@ -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.2.6] - 2022-01-21
10
+ ### Fixed
11
+ - Fixed bug with reload method arguments forwarding. [Issue #36](https://github.com/iiwo/easy_tags/issues/36)
12
+
9
13
  ## [0.2.5] - 2020-06-09
10
14
  ### Fixed
11
15
  - Added association cache invalidation after tag changes are persisted
@@ -34,7 +38,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
34
38
  ## [0.1.0] - 2019-07-15
35
39
  Initial release
36
40
 
37
- [Unreleased]: https://github.com/iiwo/easy_tagscompare/v0.2.5...HEAD
41
+ [Unreleased]: https://github.com/iiwo/easy_tagscompare/v0.2.6...HEAD
42
+ [0.2.6]: https://github.com/iiwo/easy_tags/compare/v0.2.5...v0.2.6
38
43
  [0.2.5]: https://github.com/iiwo/easy_tags/compare/v0.2.4...v0.2.5
39
44
  [0.2.4]: https://github.com/iiwo/easy_tags/compare/v0.2.3...v0.2.4
40
45
  [0.2.3]: https://github.com/iiwo/easy_tags/compare/v0.2.2...v0.2.3
@@ -19,7 +19,7 @@ module EasyTags
19
19
 
20
20
  # override ActiveRecord::Persistence#reload
21
21
  # to refresh tags each time the model instance gets reloaded
22
- def reload
22
+ def reload(*args)
23
23
  _refresh_tagging
24
24
  super
25
25
  end
@@ -1,3 +1,3 @@
1
1
  module EasyTags
2
- VERSION = '0.2.5'.freeze
2
+ VERSION = '0.2.6'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: easy_tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Iwo Dziechciarow
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2020-06-09 00:00:00.000000000 Z
11
+ date: 2022-01-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord
@@ -213,7 +213,7 @@ metadata:
213
213
  changelog_uri: https://github.com/iiwo/easy_tags/blob/master/CHANGELOG.md
214
214
  source_code_uri: https://github.com/iiwo/easy_tags
215
215
  bug_tracker_uri: https://github.com/iiwo/easy_tags/issues
216
- post_install_message:
216
+ post_install_message:
217
217
  rdoc_options: []
218
218
  require_paths:
219
219
  - lib
@@ -228,8 +228,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
228
228
  - !ruby/object:Gem::Version
229
229
  version: '0'
230
230
  requirements: []
231
- rubygems_version: 3.0.8
232
- signing_key:
231
+ rubygems_version: 3.2.9
232
+ signing_key:
233
233
  specification_version: 4
234
234
  summary: EasyTags allows you to tag a single model on several contexts
235
235
  test_files: []