tiny_filter 0.1.0 → 0.1.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 +4 -0
- data/README.md +2 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/filter/USAGE +0 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/filter/filter_generator.rb +0 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/filter/templates/filter.rb.erb +0 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/install/USAGE +0 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/install/install_generator.rb +0 -0
- data/lib/{tiny_filter/generators → generators}/tiny_filter/install/templates/application_filter.rb +0 -0
- data/lib/tiny_filter/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 70649a100b15254ca35dc3949cbbd549f87a34e41f85d87d600c42fc8d3401f0
|
|
4
|
+
data.tar.gz: af5850f2ee780906e08c24f67510224543ef46e873c342faeaa05a56e8f3c08f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d2bab5a83fb731582136d1fd219906dc0a1a44ac0a3dd83c24d0317fc5cc66f3303cca654944aae0ab23d680dbc6c1af23ccc8afd19fdd97173fc374398a3f61
|
|
7
|
+
data.tar.gz: bfc8bc3fcf4ea121c403e61c27bf9ffa516d7f94401b38cd4d7edc0f2ee3b14b42229500bd9c0da0b0c05ca79e08f61e9f31f52afa471688eb1b29bb3160c5f4
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# TinyFilter
|
|
2
2
|
|
|
3
|
+
[](https://badge.fury.io/rb/tiny_filter)
|
|
4
|
+
|
|
3
5
|
TinyFilter is created to provide a simple object-oriented abstraction layer for filtering collections.
|
|
4
6
|
It is mainly purposed for ActiveRecord collections, but you can also use it with any enumerable.
|
|
5
7
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
data/lib/{tiny_filter/generators → generators}/tiny_filter/install/templates/application_filter.rb
RENAMED
|
File without changes
|
data/lib/tiny_filter/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tiny_filter
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kirill Usanov
|
|
@@ -212,16 +212,16 @@ files:
|
|
|
212
212
|
- LICENSE
|
|
213
213
|
- README.md
|
|
214
214
|
- Rakefile
|
|
215
|
+
- lib/generators/tiny_filter/filter/USAGE
|
|
216
|
+
- lib/generators/tiny_filter/filter/filter_generator.rb
|
|
217
|
+
- lib/generators/tiny_filter/filter/templates/filter.rb.erb
|
|
218
|
+
- lib/generators/tiny_filter/install/USAGE
|
|
219
|
+
- lib/generators/tiny_filter/install/install_generator.rb
|
|
220
|
+
- lib/generators/tiny_filter/install/templates/application_filter.rb
|
|
215
221
|
- lib/tiny_filter.rb
|
|
216
222
|
- lib/tiny_filter/base.rb
|
|
217
223
|
- lib/tiny_filter/concern.rb
|
|
218
224
|
- lib/tiny_filter/filter_finder.rb
|
|
219
|
-
- lib/tiny_filter/generators/tiny_filter/filter/USAGE
|
|
220
|
-
- lib/tiny_filter/generators/tiny_filter/filter/filter_generator.rb
|
|
221
|
-
- lib/tiny_filter/generators/tiny_filter/filter/templates/filter.rb.erb
|
|
222
|
-
- lib/tiny_filter/generators/tiny_filter/install/USAGE
|
|
223
|
-
- lib/tiny_filter/generators/tiny_filter/install/install_generator.rb
|
|
224
|
-
- lib/tiny_filter/generators/tiny_filter/install/templates/application_filter.rb
|
|
225
225
|
- lib/tiny_filter/version.rb
|
|
226
226
|
- sig/tiny_filter.rbs
|
|
227
227
|
- tiny_filter.gemspec
|