Run RSpec without feature specs
Public

`rspec spec --tag ~@type:feature`

How to simplify nested ifs
Public

If you have `if`s nested in this way: ``` if a if b 1 else 2 end else 3 end ``` You can flatten and simplify them into this: ...