Skip to content
Open
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ All notable changes to this project will be documented in this file. For change

## master

- Global search option is now required for all grammar rules. [#228] (https://github.com/Project-OSRM/osrm-text-instructions/pull/228)

## 0.14.0 2019-12-04

- Update Japanese localization, add named intersections. [#290](https://github.com/Project-OSRM/osrm-text-instructions/pull/290)
Expand Down
2 changes: 1 addition & 1 deletion languages/grammar/ru.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"meta": {
"regExpFlags": ""
"regExpFlags": "g"
},
"v5": {
"accusative": [
Expand Down
2 changes: 2 additions & 0 deletions test/grammar_test.js
Original file line number Diff line number Diff line change
Expand Up @@ -489,6 +489,8 @@ tape.test('verify grammar files structure', function(assert) {
Object.keys(languages.grammars).forEach((l) => {
var grammar = languages.grammars[l];

assert.ok(grammar.meta.regExpFlags.includes('g'), l + ' grammar has "g" regexp option');

assert.ok(grammar.v5, l + ' grammar has v5 version');

Object.keys(grammar.v5).forEach((g) => {
Expand Down