Files
nairobi/config
Javi Martín a5def0cdb5 Apply Style/AndOr and Style/Not rubocop rules
The `and` and `or` keywords are not equivalent to `&&` and `||` and its
use is counterintuitive. Here's an example

```
good = true && false # good if false
bad = true and false # bad is true
```

The reason is `and` and `or` are control flow operators. So the code:

```
bad = true and false
```

Is equivalent to:


```
if bad = true
  false
end
```
2019-10-26 13:03:49 +02:00
..
2019-04-16 17:28:06 +02:00
2019-10-13 00:31:13 +02:00
2019-04-16 17:28:06 +02:00
2019-04-16 17:28:06 +02:00