summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* [ruby/csv] Add support for \r\n with skip_lines: /...$/ againSutou Kouhei2020-11-241-0/+1
| | | | | | | | GitHub: fix GH-194 Reported by Josef Šimánek. Thanks!!! https://github.com/ruby/csv/commit/fd86afe081
* [ruby/csv] Bump versionSutou Kouhei2020-11-241-1/+1
| | | | https://github.com/ruby/csv/commit/e1b430d965
* [ruby/csv] Removed needless editorconfig file (#192)Hiroshi SHIBATA2020-11-241-0/+0
| | | | https://github.com/ruby/csv/commit/5623dee00e
* [ruby/csv] Split recipes into three pages: parsing, generating, filtering (#184)Burdette Lamar2020-11-241-1/+8
| | | | | | Co-authored-by: Sutou Kouhei <kou@clear-code.com> https://github.com/ruby/csv/commit/f0bab6a592
* [ruby/csv] Clarify and correct RDoc for converters (#178)Burdette Lamar2020-11-241-25/+31
| | | | https://github.com/ruby/csv/commit/f3e9586b34
* [ruby/csv] Experimenting with recipes in CSV RDoc (#175)Burdette Lamar2020-11-241-0/+1
| | | | https://github.com/ruby/csv/commit/01ffd0d2de
* [ruby/csv] Fix CSV.filter to preserve headers (#174)Burdette Lamar2020-11-241-1/+20
| | | | | | Co-authored-by: Sutou Kouhei <kou@clear-code.com> https://github.com/ruby/csv/commit/203c5e0574
* [ruby/csv] Enhanced RDoc for CSV::Row (#173)Burdette Lamar2020-11-241-10/+44
| | | | https://github.com/ruby/csv/commit/99956c671d
* [ruby/csv] Enhanced RDoc for CSV::Row (#171)Burdette Lamar2020-11-242-31/+119
| | | | https://github.com/ruby/csv/commit/cced8d8de9
* [ruby/csv] Enhanced RDoc for Row#[]= (#170)Burdette Lamar2020-11-241-10/+47
| | | | https://github.com/ruby/csv/commit/744e83043f
* [ruby/csv] Enhanced RDoc for Table::Row (#169)Burdette Lamar2020-11-241-26/+100
| | | | https://github.com/ruby/csv/commit/70ed12c1aa
* [ruby/csv] Don't change initialize_copy's return valueSutou Kouhei2020-11-241-1/+2
| | | | https://github.com/ruby/csv/commit/cf3b60db1c
* [ruby/csv] Add link to Wikipedia article Table (#167)Burdette Lamar2020-11-241-0/+5
| | | | https://github.com/ruby/csv/commit/fe975c41d2
* [ruby/csv] Enhanced RDoc for CSV::Table (#165)Burdette Lamar2020-11-241-18/+101
| | | | https://github.com/ruby/csv/commit/bce4b696a7
* [ruby/csv] Enhanced RDoc for values_at, <<, and push (#164)Burdette Lamar2020-11-241-15/+74
| | | | https://github.com/ruby/csv/commit/bb3eb242f2
* [ruby/csv] Enhanced RDoc for Table#[] (#162)Burdette Lamar2020-11-241-8/+85
| | | | | | | | * Enhanced RDoc for Table#[] * Enhanced RDoc for Table#[] https://github.com/ruby/csv/commit/5575ffc82e
* [ruby/csv] Bump versionSutou Kouhei2020-11-241-1/+1
| | | | https://github.com/ruby/csv/commit/e7628e6930
* [ruby/csv] Disable stringio >= 0.1.3 dependencySutou Kouhei2020-11-241-1/+1
| | | | | | | If we have it, we can use the csv gem with a Rack application on Passenger. https://github.com/ruby/csv/commit/e0c7074a82
* [ruby/irb] Stop using bang version for #inspect of resultaycabta2020-11-221-1/+1
| | | | https://github.com/ruby/irb/commit/fc1426d34e
* [ruby/irb] Add a fallback for check_code_block that does not depend on ↵Benoit Daloze2020-11-221-2/+7
| | | | | | | | implementation-private APIs * Fixes https://github.com/ruby/irb/issues/133 https://github.com/ruby/irb/commit/5eb3ef3293
* [ruby/irb] support more body argument for oneliner method definitionNobuhiro IMAI2020-11-221-9/+3
| | | | https://github.com/ruby/irb/commit/2ff1295533
* [ruby/net-smtp] Bump version to 0.2.1Hiroshi SHIBATA2020-11-181-1/+1
| | | | https://github.com/ruby/net-smtp/commit/6e5c09dcc4
* Import net-smtp-0.2.0 from https://github.com/ruby/net-smtpHiroshi SHIBATA2020-11-171-27/+47
|
* Revert https://github.com/ruby/webrick/pull/44Hiroshi SHIBATA2020-11-131-1/+1
| | | | Because the test for this change was still broken.
* [ruby/webrick] add mime type of extention .mjshisanori2020-11-131-0/+1
| | | | https://github.com/ruby/webrick/commit/45d68f9eba
* [ruby/webrick] Allow empty POST and PUT requests without content lengthJeremy Evans2020-11-131-1/+1
| | | | | | | | RFC 7230 section 3.3.3 allows for this. Fixes #30 https://github.com/ruby/webrick/commit/069e9b1908
* Backport cosmetic changes from upstream repo that is ruby/rdocHiroshi SHIBATA2020-11-123-3/+3
|
* [ruby/racc] Bump version to 1.5.1Hiroshi SHIBATA2020-11-102-2/+2
| | | | https://github.com/ruby/racc/commit/2cb3055a73
* [ruby/racc] Use the Ruby license. Fix #134Hiroshi SHIBATA2020-11-107-21/+14
| | | | https://github.com/ruby/racc/commit/7c881cd548
* lib/racc/statetransitiontable.rb: Make the racc output stableYusuke Endoh2020-11-101-1/+1
| | | | | | | | | Racc calls `Array#sort!` to build a state transition table. As `Array#sort!` is not a stable sort, the output may differ depending upon the environment. This changeset makes the sort stable manually, and updates all expectation files.
* `fe80` should be case insensitive tooKazuhiro NISHIYAMA2020-11-091-2/+2
|
* Removed needless require for 'enumerator'Hiroshi SHIBATA2020-11-091-1/+0
|
* Support s390 IPv6 link local addressesJeremy Evans2020-11-071-1/+1
|
* Add support for IPv6 link local addresses to resolvJeremy Evans2020-11-071-1/+26
| | | | | | | | | | Now that it should work correctly, test that every address returned by Socket.ip_address_list is resolvable. Socket works with IPv6 link local addresses, and ipaddr now does as well, so I think resolv should support them. Fixes [Bug #17112]
* Remove sender/message_id pair after response received in resolvJeremy Evans2020-11-071-1/+1
| | | | | | | | | Once a response for a given DNS request has been received (which requires a matching message id), the [sender, message_id] pair should be removed from the list of valid senders. This makes it so duplicate responses from the same sender are ignored. Fixes [Bug #12838]
* Added dependency for net-protocolHiroshi SHIBATA2020-11-065-0/+10
|
* Revert "Prefer #send over #__send__ when it is clear there is no possible ↵NARUSE, Yui2020-11-055-8/+8
| | | | | | | | | conflict" This reverts commit 4dba0c1a8e3cc08664872e637099c4e7d58d24d3. Matz's comment is "send is not deprecated. __send__ is safer". But "Prefer #send over #__send__" is not reasonable.
* Promote un.rb to the default gems. It's preparation for 3.0.0-preview2.Hiroshi SHIBATA2020-11-051-0/+23
|
* Prefer #send over #__send__ when it is clear there is no possible conflictBenoit Daloze2020-11-055-8/+8
| | | | | | | * Reverts part of 3198e7abd70bd2af977f2bb6c967e9df8f91adb0. * If the rule is #send should be deprecated, that should be ruled by matz, there is no such rule currently and gems seem to prefer #send overwhelmingly.
* [ruby/ostruct] Update versionMarc-Andre Lafortune2020-11-041-1/+1
|
* [ruby/ostruct] Restore `ostruct` docMarc-Andre Lafortune2020-11-041-3/+3
|
* Revert "Make `marshal_load` public"Marc-Andre Lafortune2020-11-041-1/+0
| | | | | | This reverts commit ee7cc6ac35cfb056b3946b1dcd6d4d5a140ccacf. I'm not sure I agree with the spec, but I just tweaked it.
* Promote debug.rb to default gems.Hiroshi SHIBATA2020-10-301-0/+22
| | | | It have no upstream repo yet. This change is experimental for 3.0.0-preview2.
* Separate `send` into `public_send` and `__send__`Nobuyoshi Nakada2020-10-2722-42/+43
|
* Fix small typo in comment in lib/irb.cAndrew Kerr2020-10-221-1/+1
|
* Merge bundler-2.2.0.rc.2Hiroshi SHIBATA2020-10-1580-230/+358
|
* Merge rubygems-3.2.0.rc.2Hiroshi SHIBATA2020-10-154-15/+16
|
* Promote drb to the default gemsHiroshi SHIBATA2020-10-142-0/+33
|
* Promote prettyprint to default gemsHiroshi SHIBATA2020-10-081-0/+22
|
* Promote pp to default gemsHiroshi SHIBATA2020-10-081-0/+22
|