filterrific 5.2.0 → 5.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/doc/meta.md +3 -2
- data/lib/filterrific/param_set.rb +1 -1
- data/lib/filterrific/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a1fa8a5a4ff398442a2c78dea54460d53e142dca
|
4
|
+
data.tar.gz: 591c17e9e1832475dbfa4bf10c74cd57b6a1a6f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 71625782430ff42eb28fed1f5a8ec9ec6a5d12bf303bb0a1616e2e5313dc5be8c59dbd207b616f9a80ab94674c23a126052b211cbaa3398a657d8151d3077c09
|
7
|
+
data.tar.gz: b6870c78b8d46659b75bc1b8cdcad8ac1190005fe513653e0d40c2697b6808bb44e965ac18f31678e5617b03db75ae96f24b2d25479e465d39f7468522c98fe1
|
data/CHANGELOG.md
CHANGED
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
7
7
|
|
8
8
|
Filterrific major versions match the Ruby on Rails major versions they work with.
|
9
9
|
|
10
|
+
## [5.2.1] - Aug. 5, 2019
|
11
|
+
|
12
|
+
* Fixed issue where uncommitted code was pushed to rubygems and broke array filters.
|
13
|
+
|
10
14
|
## [5.2.0] - Jul. 21, 2019
|
11
15
|
|
12
16
|
* Make Filterrific master branch compatible with Rails 5 and 6.
|
data/doc/meta.md
CHANGED
@@ -15,9 +15,10 @@ For more info see: https://github.com/svenfuchs/gem-release#usage
|
|
15
15
|
* `gem bump --version major` # 0.0.1 -> 1.0.0
|
16
16
|
* `gem bump --version minor` # 0.0.1 -> 0.1.0
|
17
17
|
* `gem bump --version patch` # 0.0.1 -> 0.0.2
|
18
|
-
4.
|
18
|
+
4. Make sure there are no uncommitted changes! They will be pushed to rubygems.
|
19
|
+
5. Release it.
|
19
20
|
* `gem release`
|
20
|
-
|
21
|
+
6. Create a git tag and push to origin.
|
21
22
|
`gem tag`
|
22
23
|
|
23
24
|
|
@@ -96,7 +96,7 @@ module Filterrific
|
|
96
96
|
fp[key] = val.call
|
97
97
|
when val.is_a?(Array)
|
98
98
|
# type cast integers in the array
|
99
|
-
fp[key] = fp[key].map { |e| e =~ integer_detector_regex ? e.to_i : e }
|
99
|
+
fp[key] = fp[key].map { |e| e =~ integer_detector_regex ? e.to_i : e }
|
100
100
|
when val.is_a?(Hash)
|
101
101
|
# type cast Hash to OpenStruct so that nested params render correctly
|
102
102
|
# in the form
|
data/lib/filterrific/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: filterrific
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.2.
|
4
|
+
version: 5.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jo Hund
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: Filterrific is a Rails Engine plugin that makes it easy to filter, search,
|
14
14
|
and sort your ActiveRecord lists.
|