README.md in revector-0.1.0 vs README.md in revector-0.1.1
- old
+ new
@@ -2,15 +2,15 @@
<h1 align="center">🔃 revector</h1>
<p align="center"><i>Simple wrapper to filter array using Ruby and simple predicate conditions</i></p>
</p>
<p align="center">
- <a href="https://rubygems.org/gems/revector">
+ <a href="https://rubygems.org/gems/revector" style="text-decoration: none !important;">
<img alt="Gem" src="https://img.shields.io/gem/v/revector.svg">
</a>
- <a href="https://github.com/thadeu/revector/actions/workflows/ci.yml">
+ <a href="https://github.com/thadeu/revector/actions/workflows/ci.yml" style="text-decoration: none !important;">
<img alt="Build Status" src="https://github.com/thadeu/revector/actions/workflows/ci.yml/badge.svg">
</a>
</p>
@@ -33,11 +33,11 @@
## Compatibility
| kind | branch | ruby |
| -------------- | ------- | ------------------ |
-| unreleased | main | >= 2.5.8, <= 3.1.x |
+| unreleased | main | >= 2.7 |
## Installation
Use bundle
@@ -65,17 +65,19 @@
| Type | Suffix | Value |
| ----------- | ----------- | ----------- |
| Equal | eq | Anywhere |
| NotEqual | noteq | Anywhere |
+| Exists | ex | Anywhere |
+| NotExists | not_ex | Anywhere |
| Contains | cont | Anywhere |
-| NotContains | notcont | Anywhere |
+| NotContains | notcont, not_cont | Anywhere |
| Included | in | Anywhere |
-| NotIncluded | notin | Anywhere |
-| Start | start | Anywhere |
-| NotStart | notstart | Anywhere |
+| NotIncluded | notin, not_in | Anywhere |
+| Start | start, st | Anywhere |
+| NotStart | notstart, notst, not_start, not_st | Anywhere |
| End | end | Anywhere |
-| NotEnd | notend | Anywhere |
+| NotEnd | notend, not_end | Anywhere |
| LessThan | lt | Anywhere |
| LessThanEqual | lteq | Anywhere |
| GreaterThan | gt | Anywhere |
| GreaterThanEqual | gteq | Anywhere |