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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 416b4a714b85d92ffe1d81481749e7e75f3ebb6a5ef2f9c40330a544dd3cd774
4
- data.tar.gz: ef14412ef73a773aaec41c5f2cd7f9a715e7f3368b5d1338d4d85dfaf6af0d4c
3
+ metadata.gz: 9ced97cc1402896af067f31f21fdf5be0745033a4e7d569385c7eed70a9fb067
4
+ data.tar.gz: 6f1e0c9003beeabad7fb6bb161f4b11df41ddbdaddce080da6577fa43d21b803
5
5
  SHA512:
6
- metadata.gz: 664555bb319ec2add3dc7887b80b3e8e4ce84e288707c2a73eb003e72474549505bd401cebab4adc3eae78ed624a60ff28f9f50af9b431bae2322a5038a5b821
7
- data.tar.gz: 0c5693a2ab6f3ad7ed39a1f4b29a0b0683394cfd6b1895f8d9a33379aa72c63d241f0285055296c7cd228a8741d482f5fee030cc5dd8751e07ad128119fb213c
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
- **options`.
33
+ **options`.
26
34
 
27
35
  ## [1.2.0] - 2023-03-02
28
36
 
data/MIT-LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2021 Alex Monroe
3
+ Copyright (c) 2023 Alex Monroe
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -1,3 +1,3 @@
1
1
  module TagOptions
2
- VERSION = "1.3.1"
2
+ VERSION = "1.4.1"
3
3
  end
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.3.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: 2023-03-06 00:00:00.000000000 Z
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: 2.7.0
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.4.6
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.