tag_options 1.3.1 → 1.4.1
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 +4 -4
- data/CHANGELOG.md +10 -2
- data/MIT-LICENSE +1 -1
- data/lib/tag_options/version.rb +1 -1
- metadata +4 -18
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ced97cc1402896af067f31f21fdf5be0745033a4e7d569385c7eed70a9fb067
|
4
|
+
data.tar.gz: 6f1e0c9003beeabad7fb6bb161f4b11df41ddbdaddce080da6577fa43d21b803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d367244fa439b95fa2291d0d3e590ee2e1937924cd60ec00996398ca4d01f1186317bbc829c16547a00261d56c3ff9e6d304b43f37f484c54e2b92ee9cb94850
|
7
|
+
data.tar.gz: 42b6ec00910fca5ebfda39f121f6131bc2fd8046accd8b393f2bbbc6d35276dc240d6de50557fba7fd20a556d4dfd13c879a61bc7facecf3e49175f972538ca3
|
data/CHANGELOG.md
CHANGED
@@ -2,10 +2,18 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
+
## [1.4.1] - 2024-11-08
|
6
|
+
|
7
|
+
- Removed support for Ruby 3.0
|
8
|
+
|
9
|
+
## [1.4.0] - 2023-04-15
|
10
|
+
|
11
|
+
- Removed support for Ruby 2.7.
|
12
|
+
|
5
13
|
## [1.3.1] - 2023-03-06
|
6
14
|
|
7
15
|
- Fixed a bug where keys with empty values were being populated when using
|
8
|
-
`at()` against a non-existant key and the values passed to `combine!`, `set!`,
|
16
|
+
`at()` against a non-existant key and the values passed to `combine!`, `set!`,
|
9
17
|
or `default` resolved to no values or where `remove!` removed all values.
|
10
18
|
|
11
19
|
## [1.3.0] - 2023-03-03
|
@@ -22,7 +30,7 @@ for more information.
|
|
22
30
|
- Fixed bug introduced when switching to
|
23
31
|
`ActiveSupport::HashWithIndifferentAccess` that prevented a `TagOptions::Hash`
|
24
32
|
from being passed to a method using double splat, e.g. `some_method
|
25
|
-
|
33
|
+
**options`.
|
26
34
|
|
27
35
|
## [1.2.0] - 2023-03-02
|
28
36
|
|
data/MIT-LICENSE
CHANGED
data/lib/tag_options/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tag_options
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alex Monroe
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -24,20 +24,6 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
- !ruby/object:Gem::Dependency
|
28
|
-
name: rspec
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
27
|
description: Simple library for manipulating options passed to various Rails tag helpers.
|
42
28
|
email:
|
43
29
|
- alex@monroepost.com
|
@@ -76,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
76
62
|
requirements:
|
77
63
|
- - ">="
|
78
64
|
- !ruby/object:Gem::Version
|
79
|
-
version:
|
65
|
+
version: 3.1.0
|
80
66
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
67
|
requirements:
|
82
68
|
- - ">="
|
83
69
|
- !ruby/object:Gem::Version
|
84
70
|
version: '0'
|
85
71
|
requirements: []
|
86
|
-
rubygems_version: 3.
|
72
|
+
rubygems_version: 3.5.21
|
87
73
|
signing_key:
|
88
74
|
specification_version: 4
|
89
75
|
summary: Simple library for manipulating options passed to various Rails tag helpers.
|