Commit a3b4a4ad9d6f0f85d25f61a215580184025fbc2a
1 parent
d2ff944c
Exists in
master
and in
2 other branches
Updated readme [skip ci]
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
README.md
... | ... | @@ -55,7 +55,7 @@ brew services start elasticsearch # or opensearch |
55 | 55 | Add this line to your application’s Gemfile: |
56 | 56 | |
57 | 57 | ```ruby |
58 | -gem 'searchkick' | |
58 | +gem "searchkick" | |
59 | 59 | ``` |
60 | 60 | |
61 | 61 | The latest version works with Elasticsearch 6 and 7 and OpenSearch 1. For Elasticsearch 5, use version 3.1.3 and [this readme](https://github.com/ankane/searchkick/blob/v3.1.3/README.md). |
... | ... | @@ -485,7 +485,7 @@ Search :ice_cream::cake: and get `ice cream cake`! |
485 | 485 | Add this line to your application’s Gemfile: |
486 | 486 | |
487 | 487 | ```ruby |
488 | -gem 'gemoji-parser' | |
488 | +gem "gemoji-parser" | |
489 | 489 | ``` |
490 | 490 | |
491 | 491 | And use: |
... | ... | @@ -1298,7 +1298,7 @@ ENV["ELASTICSEARCH_URL"] = "https://es-domain-1234.us-east-1.es.amazonaws.com:44 |
1298 | 1298 | To use signed requests, include in your Gemfile: |
1299 | 1299 | |
1300 | 1300 | ```ruby |
1301 | -gem 'faraday_middleware-aws-sigv4' | |
1301 | +gem "faraday_middleware-aws-sigv4" | |
1302 | 1302 | ``` |
1303 | 1303 | |
1304 | 1304 | and add to your initializer: |
... | ... | @@ -1368,7 +1368,7 @@ See [Production Rails](https://github.com/ankane/production_rails) for other goo |
1368 | 1368 | Significantly increase performance with faster JSON generation. Add [Oj](https://github.com/ohler55/oj) to your Gemfile. |
1369 | 1369 | |
1370 | 1370 | ```ruby |
1371 | -gem 'oj' | |
1371 | +gem "oj" | |
1372 | 1372 | ``` |
1373 | 1373 | |
1374 | 1374 | This speeds up all JSON generation and parsing in your application (automatically!) |
... | ... | @@ -1378,7 +1378,7 @@ This speeds up all JSON generation and parsing in your application (automaticall |
1378 | 1378 | Significantly increase performance with persistent HTTP connections. Add [Typhoeus](https://github.com/typhoeus/typhoeus) to your Gemfile and it’ll automatically be used. |
1379 | 1379 | |
1380 | 1380 | ```ruby |
1381 | -gem 'typhoeus' | |
1381 | +gem "typhoeus" | |
1382 | 1382 | ``` |
1383 | 1383 | |
1384 | 1384 | To reduce log noise, create an initializer with: |
... | ... | @@ -1447,7 +1447,7 @@ Product.reindex(async: {wait: true}) |
1447 | 1447 | You can use [ActiveJob::TrafficControl](https://github.com/nickelser/activejob-traffic_control) to control concurrency. Install the gem: |
1448 | 1448 | |
1449 | 1449 | ```ruby |
1450 | -gem 'activejob-traffic_control', '>= 0.1.3' | |
1450 | +gem "activejob-traffic_control", ">= 0.1.3" | |
1451 | 1451 | ``` |
1452 | 1452 | |
1453 | 1453 | And create an initializer with: | ... | ... |