noiseless 0.0.0

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 9b80fb21fd8ce9ead0c11e07f58073c6e2d6ffeb725c12b942900232a869562a
4
+ data.tar.gz: dd05691108e09285328159ec96892fd1564bfbe17461ea3665d947aedfe81b0e
5
+ SHA512:
6
+ metadata.gz: 4babc5689c8e21b325c3cf6bc595f8b92f91c8ce364bb102ffa779ce5332e9fe4e221d613e805e1bfcd782f9e3f8dd2d7caa39a11de5df89703feb16086c20f7
7
+ data.tar.gz: a62dd755a2bf87f96ac17c920e9e350cabad4bfb8384bba4a96a5db90c71fcb8510ed1c2467717087824e6d0981c0e6670ff4ada99ea95101b3e61dec192d637
data/LICENSE.txt ADDED
File without changes
data/README.md ADDED
File without changes
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Noiseless
4
+ VERSION = "0.0.0"
5
+ end
data/lib/noiseless.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "noiseless/version"
4
+
5
+ module Noiseless
6
+ class Error < StandardError; end
7
+
8
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: noiseless
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Abdelkader Boudih
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2025-07-10 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Noiseless is an ActiveRecord-style search adapter for Ruby. Supports
14
+ multiple backends (Elasticsearch, OpenSearch, Typesense), async querying, and a
15
+ clean DSL.
16
+ email:
17
+ - terminale@gmail.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - LICENSE.txt
23
+ - README.md
24
+ - lib/noiseless.rb
25
+ - lib/noiseless/version.rb
26
+ homepage: https://github.com/seuros/noiseless
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '3.2'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubygems_version: 3.4.19
46
+ signing_key:
47
+ specification_version: 4
48
+ summary: Universal Ruby search abstraction with async and multi-backend support
49
+ test_files: []