tiny_filter 0.1.0 → 0.1.1

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: 52eb68e11715585163330d5f814e72744ad26114320d87dd9dd1cb80326bf3a7
4
- data.tar.gz: c57812b379ade0d6dcdd4f262c6cd1e00773c15f9e1d6292594eff133eef4556
3
+ metadata.gz: 70649a100b15254ca35dc3949cbbd549f87a34e41f85d87d600c42fc8d3401f0
4
+ data.tar.gz: af5850f2ee780906e08c24f67510224543ef46e873c342faeaa05a56e8f3c08f
5
5
  SHA512:
6
- metadata.gz: 757d3bc888fc7658bb1c72ce82871be05f4dcf90d50eb48b9cf610267f11f2a44b12e6844b84d074593f19de61462e4daf44cb1e43452ce55117562bebebd5e4
7
- data.tar.gz: 59f7ae5777c94a9b01c7f51848ae9e3ee3b365643e44702e836ccd42c3a77d5fc93f21eecd47aefac9a327dee8d644d3f39476c6e114ce1fa1779fbcc9245174
6
+ metadata.gz: d2bab5a83fb731582136d1fd219906dc0a1a44ac0a3dd83c24d0317fc5cc66f3303cca654944aae0ab23d680dbc6c1af23ccc8afd19fdd97173fc374398a3f61
7
+ data.tar.gz: bfc8bc3fcf4ea121c403e61c27bf9ffa516d7f94401b38cd4d7edc0f2ee3b14b42229500bd9c0da0b0c05ca79e08f61e9f31f52afa471688eb1b29bb3160c5f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2022-12-12
4
+
5
+ - Fixed generators
6
+
3
7
  ## [0.1.0] - 2022-12-05
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # TinyFilter
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/tiny_filter.svg)](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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TinyFilter
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
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.0
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