Skip to content

algolia/algoliasearch-client-ruby

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Algolia for Ruby

The perfect starting point to integrate Algolia within your Ruby project

CircleCI Gem Version License

DocumentationRailsCommunity ForumStack OverflowReport a bugFAQSupport

✨ Features

Thin & minimal low-level HTTP client to interact with Algolia's API

💡 Getting Started

First, install Algolia Ruby API Client via the RubyGems package manager:

gem install algolia

Then, create objects on your index:

client = Algolia::SearchClient.create('YourApplicationID', 'YourAPIKey')

client.save_object('your_index_name', {objectID: 1, name: 'Foo'})

Finally, you may begin searching a object using the search method:

objects = client.search_single_index('your_index_name', 'Foo')

For full documentation, visit the Algolia Ruby API Client.

❓ Troubleshooting

Encountering an issue? Before reaching out to support, we recommend heading to our FAQ where you will find answers for the most common issues and gotchas with the client. You can also open a GitHub issue

Contributing

This repository hosts the code of the generated Algolia API client for Ruby, if you'd like to contribute, head over to the main repository. You can also find contributing guides on our documentation website.

📄 License

The Algolia Ruby API Client is an open-sourced software licensed under the MIT license.