summaryrefslogtreecommitdiff
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Fix a typo in inspectKazuhiro NISHIYAMA2019-07-251-1/+1
|
* [rubygems/rubygems] Resolve `@@project_dir` from test file pathsNobuyoshi Nakada2019-07-241-2/+0
| | | | | | | `Dir.pwd` may differ from the source path. Test directories and files should be resolved from test file paths. https://github.com/rubygems/rubygems/commit/e18e7c81b4
* Show the caller's locationNobuyoshi Nakada2019-07-241-2/+2
| | | | | * lib/net/http/header.rb: show the caller's location instead of the current lines.
* Make pkg_config in mkmf include -I cflags in return valueJeremy Evans2019-07-231-4/+4
| | | | | | | | | | | This was the historical behavior, it was modified unintentionally by 097c3e9cbbf23718371f08c24b2d2297b039f63f, which started storing these flags in a different global variable. Also, include the incflags when logging, and document that the method modifies $INCFLAGS. Fixes [Bug #10651]
* Some keywords, "true", "false", and "nil" should be treated as a variableaycabta2019-07-201-1/+1
|
* Fix showing doc of "nil.to_s", nil doesn't have #nameaycabta2019-07-192-1/+8
|
* Get rid of LoadError with $DEBUGNobuyoshi Nakada2019-07-171-6/+7
|
* Require Ruby 2.4 or later because needs lex_state from Ripperaycabta2019-07-151-0/+2
|
* Also fixed up with 036039c8a29d3d8045207c111f9bbc481c904998Hiroshi SHIBATA2019-07-151-1/+1
|
* Fixed LoadError of version file.Hiroshi SHIBATA2019-07-151-1/+1
|
* Fixed inconsitency locations of default gems.Hiroshi SHIBATA2019-07-152-0/+0
|
* [ruby/logger] Add option to set the binary mode of the log deviceRafael Mendonça França2019-07-152-5/+11
| | | | | | | | | | | | Without binmode strings with incompatible encoding can't be written in the file. This is very common in applications that log user provided parameters. We need to allow changing the binnary mode because right now it is impossible to use the built-in log rotation feature when you provide a File object to the LogDevice, and if you provide a filename you can't have binmode. https://github.com/ruby/logger/commit/9114b3ac7e
* [ruby/logger] Set filename when initializing logger with a File objectJeremy Evans2019-07-151-0/+3
| | | | | | This should allow reopen to work. Requested in ruby issue #14595. https://github.com/ruby/logger/commit/bd367aff12
* [ruby/logger] Enable `frozen_string_literal: true` in `logger.rb`.Samuel Williams2019-07-151-1/+1
| | | | https://github.com/ruby/logger/commit/2dc832e901
* [ruby/logger] Prefer require_relative, it's a little bit faster.Samuel Williams2019-07-152-6/+7
| | | | https://github.com/ruby/logger/commit/1e2aab4bea
* [ruby/logger] Update logger.gemspecsonots2019-07-151-4/+4
| | | | https://github.com/ruby/logger/commit/1335a71d98
* [ruby/logger] require 'logger/errors' just for compatsonots2019-07-152-1/+2
| | | | https://github.com/ruby/logger/commit/255a51dc10
* [ruby/logger] split logger classes/modules into separate filesColby Swandale2019-07-158-294/+308
| | | | https://github.com/ruby/logger/commit/f10ce9fff2
* [ruby/logger] Add support for changing severity using bang methods.Samuel Williams2019-07-151-0/+15
| | | | https://github.com/ruby/logger/commit/ae4c6dfcbb
* [ruby/logger] Add missing closing "Samuel Giddins2019-07-151-1/+1
| | | | https://github.com/ruby/logger/commit/b4b3caae40
* [ruby/logger] Say that logger requires ruby >= 2.3Samuel Giddins2019-07-151-0/+2
| | | | | Since it uses `&.`, it can't be used on older rubies https://github.com/ruby/logger/commit/b872f90ab9
* [ruby/logger] dont lock bundler to a specific version in travisColby Swandale2019-07-151-1/+1
| | | | https://github.com/ruby/logger/commit/eb5ac229a5
* [ruby/logger] remove files that dont need to be included in gem releasesColby Swandale2019-07-151-1/+1
| | | | https://github.com/ruby/logger/commit/9a3be8650f
* Change PROMPT_S of simple-promptKazuhiro NISHIYAMA2019-07-151-1/+1
| | | | | | | | | | | | When input `"` or `/` with simple-prompt, Before: `"` or `/` (prompt disappeared and indent is changed) After: `"> "` or `/> /` (indent is unchanged since `>> `)
* Simplify history saving codeaycabta2019-07-151-8/+1
|
* The default charset of text/* media type is UTF-8.Tanaka Akira2019-07-151-5/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Thanks for the patch gareth (Gareth Adams). [Bug #15933] ------- Combines two small, but very related changes 1: Treat HTTPS the same as HTTP Previously, OpenURI followed guidance in RFC2616/3.7.1: > When no explicit charset parameter is provided by the sender, media > subtypes of the "text" type are defined to have a default charset > value of "ISO-8859-1" when received via HTTP. However this RFC was written before TLS was established and OpenURI was never updated to treat HTTPS traffic the same way. So, HTTPS documents received a different default to HTTP documents. This commit removes the scheme check so that all text/* documents processed by OpenURI are treated the same way. In theory this processing gets applied to FTP URIs too, but there's no mechanism in OpenURI for FTP documents to have Content-Type metadata appended to them, so this ends up being a no-op. 2: Change default charset for text/* to UTF-8 Replaces the default ISO-8859-1 charset previously defined in RFC2616 (now obsoleted) with a UTF-8 charset as defined in RFC6838. Fixes: https://bugs.ruby-lang.org/issues/15933
* Use #to_a for Readline::HISTORY directlyaycabta2019-07-151-1/+1
|
* Add lib/irb/color.rb to destribution file listaycabta2019-07-151-1/+1
|
* Remove debug printaycabta2019-07-151-1/+0
|
* Support multiline irb_historyaycabta2019-07-151-2/+18
| | | | | A history line ends with "\" to escape newline if it's a continuous line.
* Check wether prompt_i is nilaycabta2019-07-151-1/+2
|
* Save history in IRB is enabled by defaultaycabta2019-07-152-6/+5
|
* Auto indent in IRB is enabled by defaultaycabta2019-07-153-8/+8
|
* Version 1.1.0.pre.2aycabta2019-07-151-2/+2
|
* Need reline-0.0.1 or later for some featuresaycabta2019-07-151-1/+1
|
* Version 0.0.1aycabta2019-07-151-1/+1
|
* Remove unused method.manga_osyo2019-07-151-4/+0
|
* [ruby/matrix] Add Matrix::VERSION constantMarcus Stollsteimer2019-07-153-2/+16
| | | | | | | Add Matrix::VERSION for the gem version, use it in the gemspec, and make it also available for library users. https://github.com/ruby/matrix/commit/65c2bb1fa1
* [ruby/matrix] Add missing `lib/matrix/' files to file list in gemspecMarcus Stollsteimer2019-07-151-1/+1
| | | | https://github.com/ruby/matrix/commit/2bbb9be233
* Add `class Reline::History` and test.manga_osyo2019-07-152-60/+62
|
* Suppress warningsMasataka Pocke Kuwabara2019-07-153-2/+6
|
* [ruby/rdoc] Bump version to 6.1.1aycabta2019-07-151-1/+1
| | | | https://github.com/ruby/rdoc/commit/55c0627fe0
* [ruby/rdoc] Correction to include regexp_handling in list of loaded filespoloka2019-07-151-1/+1
| | | | https://github.com/ruby/rdoc/commit/1940b2318c
* [ruby/csv] Fix a bug that strip: true removes newlinesKouhei Sutou2019-07-141-1/+1
| | | | https://github.com/ruby/csv/commit/5540d35a30
* [ruby/csv] add options doc :quote_empty (#89)kawa_tech2019-07-141-1/+4
| | | | https://github.com/ruby/csv/commit/5ca8d79f60
* [ruby/csv] Add options doc: :write_converters, :write_nil_value, ↵Masafumi Koba2019-07-141-3/+13
| | | | | | :write_empty_value (#87) https://github.com/ruby/csv/commit/5923ee08b7
* [ruby/csv] add document of strip (#88)hayashiyoshino2019-07-141-1/+5
| | | | | | | | * add document of strip * modify typo https://github.com/ruby/csv/commit/de0257dc31
* [ruby/csv] Bump versionKouhei Sutou2019-07-141-1/+1
| | | | https://github.com/ruby/csv/commit/3976985008
* [ruby/csv] Don't raise on eof?Kouhei Sutou2019-07-141-0/+11
| | | | | | | | GitHub: fix #86 Reported by krororo. Thanks!!! https://github.com/ruby/csv/commit/5a8d9d9297
* [ruby/csv] Refactor range in delete_suffix (#85)Kazuhiro NISHIYAMA2019-07-141-1/+1
| | | | https://github.com/ruby/csv/commit/7ff57a50e8