Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
<!-- ParadeDB: Postgres for Search and Analytics -->
<h1 align="center">
<a href="https://paradedb.com"><img src="https://github.com/paradedb/paradedb/raw/main/docs/logo/readme.svg" alt="ParadeDB"></a>
<br>
<a href="https://paradedb.com">
<picture align=center>
<source media="(prefers-color-scheme: dark)" srcset="https://github.com/paradedb/paradedb/raw/main/docs/logo/paradedb-logo-dark-large.svg">
Comment thread
philippemnoel marked this conversation as resolved.
<source media="(prefers-color-scheme: light)" srcset="https://github.com/paradedb/paradedb/raw/main/docs/logo/paradedb-logo-light-large.svg">
<img alt="The ParadeDB logo." src="https://github.com/paradedb/paradedb/raw/main/docs/logo/paradedb-logo-light-large.svg">
</picture>
</a>
<br>
</h1>

<p align="center">
<b>Simple, Elastic-quality search for Postgres</b><br/>
<b>Search without a second system.</b><br/>
One Postgres for your application data, full-text search, vector retrieval, and aggregations.
</p>

<h3 align="center">
Expand All @@ -30,7 +36,7 @@

## ParadeDB for Rails

The official ActiveRecord integration for [ParadeDB](https://paradedb.com), including first-class support for managing BM25 indexes and running queries using the full ParadeDB API. Follow the [getting started guide](https://docs.paradedb.com/documentation/getting-started/environment#rails) to begin.
The official ActiveRecord integration for [ParadeDB](https://paradedb.com) (powered by the [`pg_search`](https://github.com/paradedb/paradedb) Postgres extension), including first-class support for managing BM25 indexes and running queries using the full ParadeDB API. Follow the [getting started guide](https://docs.paradedb.com/documentation/getting-started/environment#rails) to begin.

## Requirements & Compatibility

Expand Down
2 changes: 1 addition & 1 deletion rails-paradedb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
spec.email = ["support@paradedb.com"]

spec.summary = "ParadeDB integration for ActiveRecord"
spec.description = "Simple, Elastic-quality search for Postgres via ParadeDB and ActiveRecord."
spec.description = "Elastic-quality full-text search, vector retrieval, and aggregations in Postgres via ParadeDB and ActiveRecord."
spec.homepage = "https://github.com/paradedb/rails-paradedb"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
Expand Down
Loading