Documentation • Rails • Community Forum • Stack Overflow • Report a bug • Support
## ✨ Features - Thin & minimal low-level HTTP client to interact with Algolia's API - Supports Ruby `^1.8.7`. ## 💡 Getting Started First, install Algolia Ruby API Client via the [RubyGems](https://rubygems.org/) package manager: ```bash gem install algoliasearch ``` Then, create objects on your index: ```ruby Algolia.init(application_id: 'YourApplicationID', api_key: 'YourAPIKey') index = Algolia::Index.new('your_index_name') index.save_objects([objectID: 1, name: 'Foo']) ``` Finally, you may begin searching a object using the `search` method: ```ruby objects = index.search('Fo') ``` For full documentation, visit the **[Algolia Ruby API Client](https://www.algolia.com/doc/api-client/getting-started/install/ruby/)**. ## 📄 License Algolia Ruby API Client is an open-sourced software licensed under the [MIT license](LICENSE.md).