mogest (Roger Nesbitt)
- Login: mogest
- Registered on: 01/23/2016
- Last sign in: 07/31/2016
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
01/26/2016
-
09:13 AM Ruby Feature #12023 (Open): Allow ivars to be used as method arguments
- I've found myself writing a lot of code similar to the following, especially when writing service-style classes:
~~~Ruby
class ResizeImage
def initialize(image, width:, height: width)
@image = image
@width = width
...