usearch 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c30050c58a55498f410c2a5859ae6fe865520f916ccc6188d73314c35a40c2c
4
- data.tar.gz: 795a84c5388413687170a08cfa944fa16eb14e889e9f7e01d3b5ea6654e0717d
3
+ metadata.gz: 40f9e581c24e13f4299a0d89cf34f9a7401480b93fc3252e5a94bfd35a37d37b
4
+ data.tar.gz: e91e7b01a0e22ec10801ced7791102233ad70ef17a68195668faca6fc8a01308
5
5
  SHA512:
6
- metadata.gz: e4bdfaea1930735a1a3865ad9ed25e80537ed95731388bc2468e02ddca0ee4d28548b5f22aac0e061479a7ee5297b13218b2a7a5115458f5714dff21f60e9c3d
7
- data.tar.gz: 4952ee6872e49d97f5427ea04b438ae71fd2f5cfdd77bd91496341b5e82134ccafea3114725310534f06aebf4a6719f888a55750598ecaf3727813f9791467ae
6
+ metadata.gz: 140b88b17ab64d50af64b1085192a7ab4ceb9f243649459b17ef26eface0a609ddd90e0747b8de2293c986d281d9d5de5f417308b10b16c861fcdb2e2327dd21
7
+ data.tar.gz: fc3abb46b0a2b082fddd842fe5c2a02703c2a32e0c018e662113cac42afc77b57e5aad53434a4901568e733e27d7778c6187350b099b5f973ef163aaac1ca2f0
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [0.1.1] - 2024-02-17
4
+
5
+ - Fixes
6
+
3
7
  ## [0.1.0] - 2024-02-17
4
8
 
5
9
  - Initial release
data/README.md CHANGED
@@ -1,22 +1,17 @@
1
1
  # USearch
2
2
 
3
- USearch provides some model scopes/methods useful to search and sort your active record data.
3
+ USearch provides some useful model scopes/methods to search data on rails `active record`.
4
4
 
5
5
  ## Installation
6
6
 
7
- TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
8
-
9
- Install the gem and add to the application's Gemfile by executing:
10
-
11
- $ bundle add UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
12
-
13
- If bundler is not being used to manage dependencies, install the gem by executing:
14
-
15
- $ gem install UPDATE_WITH_YOUR_GEM_NAME_PRIOR_TO_RELEASE_TO_RUBYGEMS_ORG
7
+ Inside your Gemfile add the following:
8
+ ```
9
+ gem 'usearch', '~> 0.1.1'
10
+ ```
16
11
 
17
12
  ## Usage
18
13
 
19
- ### - `search all scope`:
14
+ ### `search all scope`:
20
15
 
21
16
  Include the concern in the model you want tu use the scope:
22
17
  ```
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Usearch
4
- VERSION = "0.1.0"
4
+ VERSION = "0.1.1"
5
5
  end
data/usearch.gemspec CHANGED
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.authors = ["Carlos Montiel"]
9
9
  spec.email = ["carlosm02635@gmail.com"]
10
10
 
11
- spec.summary = "rails search and sort"
12
- spec.description = "useful helpers for searching and sorting data"
11
+ spec.summary = "rails useful helpers to search on rails active record data"
12
+ spec.description = "rails useful helpers to search on rails active record data"
13
13
  spec.homepage = "https://github.com/carlosm02635/usearch"
14
14
  spec.license = "MIT"
15
15
  spec.required_ruby_version = ">= 2.6.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: usearch
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
  - Carlos Montiel
@@ -38,7 +38,7 @@ dependencies:
38
38
  - - ">="
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
- description: useful helpers for searching and sorting data
41
+ description: rails useful helpers to search on rails active record data
42
42
  email:
43
43
  - carlosm02635@gmail.com
44
44
  executables: []
@@ -83,5 +83,5 @@ requirements: []
83
83
  rubygems_version: 3.3.7
84
84
  signing_key:
85
85
  specification_version: 4
86
- summary: rails search and sort
86
+ summary: rails useful helpers to search on rails active record data
87
87
  test_files: []