Files
nairobi/config/initializers
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
..
2015-07-15 13:32:13 +02:00
2019-09-10 21:04:56 +02:00
2019-04-16 17:28:06 +02:00
2015-07-15 13:32:13 +02:00
2017-04-03 12:30:57 +02:00
2015-07-15 13:32:13 +02:00
2018-07-31 12:50:25 +02:00
2019-04-16 17:28:06 +02:00