bk5115545 (Blaise Koch)
- Login: bk5115545
- Registered on: 06/26/2016
- Last sign in: 07/14/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
06/26/2016
-
05:05 AM Ruby Feature #12519 (Rejected): Expansion of modifier_if and modifier_unless
- Hi all.
I propose a syntax change to allow the below to be valid ruby.
```ruby
variable = 1 if false else 2
```
This is an extension of the current `modifier_if` below which accomplishes the same result.
```ruby
variable =...