2024-12-09 16:21:51 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
misc/ruby-pry: update to 0.15.0
0.15.0 (2024-11-15)
Features
* Added support for Reline (#2298)
* Added support for Ruby 3.3 (#2295)
* Added Pry::Input::SimpleStdio for dumb terminals when Reline is in use
(#2304)
* Remove OpenStruct usage (#2307) (#2309)
* Disable coloring of output when NO_COLOR is set. (#2323)
* Add pry --no-multiline flag to keep single line prompt. (#2327)
Bug Fixes
* Fix typos on docs and and comments (#2300) (#2301)
* Fix 'calling clear method' on user code when defined in pry context.
(#2291)
* Fix arguments WatchExpression#add_expression (#2278)
Breaking changes
* Remove support for deprecated Pry.config.prompt = [proc {}, proc {}]
Use Pry::Prompt API instead (#2308)
* Remove deprecated Pry.config.exception_whitelist.
Use Pry.config.unrescued_exceptions instead. (#2326)
|
2024-01-21 10:15:17 by Takahiro Kambe | Files touched by this commit (1) |
Log message:
misc/ruby-pry: fix for ruby33
Depends on devel/ruby-readline prior to ruby33.
|
2023-01-15 16:40:22 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
misc/ruby-pry: update to 0.14.2
0.14.2 (2023-01-09)
Features
* Configure code as a supported editor on Pry::Editor (#2236)
* Added support for Ruby 3.2 (#2263)
* Added support for Ruby 3.1 (#2228)
Bug fixes
* Short circuit eval regexes in finding module definition (#2253)
* Revert "Escape non-printing characters" (#2235)
* Fixed bug where WeirdMethodLocator would fail to find the source of a
method breaking whereami (#2244)
* Fixed bug where pry would throw an FrozenError when dealing with
incomplete tokens (#2136)
* Restore --no-history CLI flag functionality (#2196)
* Fixed bug where reading from the _out_ sticky local variable could return
wrong results (#2201)
Breaking Changes
* Remove support for Ruby 1.9 and JRuby < 9.0 (#2239)
|
2021-10-26 12:59:39 by Nia Alarie | Files touched by this commit (378) |
Log message:
misc: Replace RMD160 checksums with BLAKE2s checksums
All checksums have been double-checked against existing RMD160 and
SHA512 hashes
The following distfiles could not be fetched (possibly fetched
conditionally?):
./misc/libreoffice/distinfo libreoffice/harfbuzz-2.6.4.tar.xz
|
2021-10-07 16:35:55 by Nia Alarie | Files touched by this commit (378) |
Log message:
misc: Remove SHA1 hashes for distfiles
|
2021-05-04 18:16:03 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
misc/ruby-pry: update to 0.14.1
0.14.1 (April 12, 2021)
Bug fixes
* Fixed bad coloring of some RDoc-style docs (#2182)
* Fixed broken --plugins option. It shows a warning now (#2180)
* Fixed bad output on printing non-visible characters with color codes
(#2154)
* Fixed bad output when colors are disabled and a string with color codes is
printed (#2158)
|
2021-02-13 14:58:03 by Takahiro Kambe | Files touched by this commit (3) | |
Log message:
misc/ruby-pry: update to 0.14.0
0.14.0 (February 8, 2021)
Features
* Made ? an alias to show-source -d (#2133)
* Added support for Ruby 3.0
Breaking changes
* Deleted support for plugin autoloading (#2119). In order to load a Pry
plugin you must require it from your pryrc or add it to your Gemfile.
# ~/.pryrc
require 'pryrc'
|
2020-04-27 17:00:27 by Takahiro Kambe | Files touched by this commit (2) | |
Log message:
misc/ruby-pry: update to 0.13.1
Update ruby-pry to 0.13.1.
### [v0.13.1][v0.13.1] (April 12, 2020)
#### Bug fixes
* Fixed bug where on invalid input only the last syntax error is displayed
(instead of all of them) ([#2117](https://github.com/pry/pry/pull/2117))
* Fixed `Pry::Config` raising `NoMethodError` on undefined option instead of
returning `nil` (usually invoked via `Pry.config.foo_option` calls)
([#2126](https://github.com/pry/pry/pull/2126))
* Fixed `help` command not displaying regexp aliases properly
([#2120](https://github.com/pry/pry/pull/2120))
* Fixed `pry-backtrace` not working ([#2122](https://github.com/pry/pry/pull/2122))
|
2020-03-27 07:07:57 by Takahiro Kambe | Files touched by this commit (2) |
Log message:
misc/ruby-pryu: commit forgotten files
Commit forgotten files. Noted by joerg@.
|
2020-03-23 18:09:20 by Takahiro Kambe | Files touched by this commit (1) | |
Log message:
misc/ruby-pry: update to 0.13.0
Update ruby-pry to 0.13.0.
pkgsrc change: add "USE_LANGAUGES= # none".
0.13.0 (March 21, 2020)
Features
* Added metadata to the gem (such as changelog URI, source code URI & bug
tracker URI), so it shows on https://rubygems.org/gems/pry (#1869)
* Added ability to forward ARGV to a Pry session via -- (or -) when
launching Pry from shell (#1902)
* Added Pry::Config::LazyValue & Pry::Config::MemoizedValue, which allow
storing callable procs in the config (#2024)
* Added the rc_file config option that tells Pry the path to pryrc (#2027)
* Added the --code flag to the wtf command, which shows code for each
backtrace frame (#2037)
* Added the ability to paste method call chains with leading dots (#2060)
API changes
* Pry::Prompt is a class now and it can be instantiated to create new
prompts on the fly that are not registered with Pry::Prompt#add. Learn
more about its API in the docs (#1877)
Deprecations
* Deprecated Pry.config.exception_whitelist in favor of
Pry.config.unrescued_exceptions (#1874)
* Deprecated Pry.config.prompt = Pry::Prompt[:simple][:value] in favor of
Pry.config.prompt = Pry::Prompt[:simple] when setting Pry prompt via
pryrc. Pry::Prompt[:simple] would return an instance of Pry::Prompt
instead of Hash (#1877)
* Deprecated setting prompt via an array of two procs: (#1877)
# Deprecated, emits a warning.
Pry.config.prompt = [proc {}, proc {}]
This will be removed in the next release.
* Deprecated the show-doc command. The show-source -d is the new recommended
way of reading docs (#1934)
* Deprecated Pry::Command#_pry_. Use Pry::Command#pry_instance instead (#1989)
Breaking changes
* Deleted deprecated Pry::Platform (#1863)
* Deleted deprecated Pry#{input/output}_array (#1884)
* Deleted deprecated Pry::Prompt::MAP (#1866)
* Deleted deprecated methods of Pry::Helpers::BaseHelpers such as mac_osx?,
linux?, windows?, windows_ansi?, jruby?, jruby_19?, mri?, mri_19?, mri_2?
(#1867)
* Deleted deprecated Pry::Command#text (#1865)
* Deleted deprecated Pry::Method#all_from_common (#1868)
* Deleted install-command (#1979)
* Deleted Pry::Helpers::BaseHelpers#command_dependencies_met? (#1979)
* Deleted commands: gem-cd, gem-install, gem-list, gem-open, gem-readme,
gem-search, gem-stats (#1981)
* Deleted deprecated commands: edit-method and show-command (#2001)
* Deleted Pry::Command#disabled_commands (#2001)
* Deleted Pry::BlockCommand#opts (use #context instead) (#2003)
* Deleted Pry.lazy (use Pry::Config::LazyValue instead) (#2024)
Bug fixes
* Fixed bug where using Pry.config.prompt_name can return a
Pry::Config::Lazy instead of expected instance of String (#1890)
* Fixed LoadError being raised when using auto completions and Bundler (#1896)
* Fixed bug where Pry.input_ring doesn't append duplicate elements (#1898)
* Fixed Ruby 2.6 warning about Binding#source_location (#1904)
* Fixed wrong winsize when custom output is passed to Pry (#2045)
* Fixed XDG_CONFIG_HOME & XDG_DATA_HOME precedence. When these env variables
are set, Pry no longer uses traditional files like ~/.pryrc &
~/.pry_history. Instead, the env variable paths are loaded first (#2056)
* Fixed the $SAFE will become a normal global variable in Ruby 3.0 warning
on Ruby 2.7 (#2107)
* Fixed bug when whereami -c cannot show beginning of the class, which is on
the same line as another expression (#2098)
* Fixed bug when Object#owner is defined, which results into somewhat broken
method introspection (#2113)
* Fixed bug when indentation leaves parts of input after pressing enter when
Readline is enabled with mode indicators for vi mode. This was supposed to
be fixed in v0.12.2 but it regressed (#2114)
|