kstevens715 (Kyle Stevens)
- Login: kstevens715
- Email: kstevens715@gmail.com
- Registered on: 06/22/2013
- Last sign in: 11/24/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
10/18/2023
-
10:17 AM Ruby Revision ef3f9f1a (git): [rubygems/rubygems] Allow uninstalling multiple versions of same gem
- Currently, you can install multiple versions of the same gem just fine:
```
$ gem install simplecov:0.19.0 simplecov:0.22.0
Fetching simplecov-0.19.0.gem
Successfully installed simplecov-0.19.0
Parsing documentation for simplecov-0.19.0...
11/24/2013
-
04:08 AM Ruby Bug #8560: CSV, skip_lines option causes error when passing a string
- Attached is a patch that converts skip_lines to a Regexp if it's a string. Also see pull request on GitHub: https://github.com/ruby/ruby/pull/455
06/22/2013
-
03:53 PM Ruby Bug #8560 (Closed): CSV, skip_lines option causes error when passing a string
- There seems to be a bug in the CSV class when using the skip_lines option.This option is currently undocumented, but according to the GitHub PR, it accepts any object that responds to `match`. String responds to match, so one would imagi...