forked from jsonn/pkgsrc
-
Notifications
You must be signed in to change notification settings - Fork 64
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* pkgsrc change: add pkg_alternatives support. 0.19.4, release 2016-11-28 * Rename Thor::Base#thor_reserved_word? to #is_thor_reserved_word? 0.19.3, release 2016-11-27 * Output a warning instead of raising an exception when a default option value doesn't match its specified type 0.19.2, release 2016-11-26 * Fix bug with handling of colors passed to ask (and methods like yes? and no? which it underpins) * Allow numeric arguments to be negative * Ensure that default option values are of the specified type (e.g. you can't specify "foo" as the default for a numeric option), but make symbols and strings interchangeable * Add Thor::Shell::Basic#indent method for intending output * Fix remove_command for an inherited command (see #451) * Allow hash arguments to only have each key provided once (see #455) * Allow commands to disable class options, for instance for "help" commands (see #363) * Do not generate a negative option (--no-no-foo) for already negative boolean options (--no-foo) * Improve compatibility of Thor::CoreExt::HashWithIndifferentAccess with Ruby standard library Hash * Allow specifying a custom binding for template evaluation (e.g. #key? and #fetch) * Fix support for subcommand-specific "help"s * Use a string buffer when handling ERB for Ruby 2.3 compatibility * Update dependencies
- Loading branch information
taca
committed
Mar 20, 2017
1 parent
713b506
commit c2628b0
Showing
4 changed files
with
13 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bin/thor @PREFIX@/bin/thor@RUBY_SUFFIX@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# $NetBSD: Makefile,v 1.7 2014/08/27 00:04:19 schmonz Exp $ | ||
# $NetBSD: Makefile,v 1.8 2017/03/20 12:48:32 taca Exp $ | ||
|
||
DISTNAME= thor-0.19.1 | ||
DISTNAME= thor-0.19.4 | ||
CATEGORIES= devel | ||
|
||
MAINTAINER= [email protected] | ||
|
@@ -10,5 +10,7 @@ LICENSE= mit | |
|
||
CONFLICTS+= ruby[1-9][0-9]-thor-[0-9]* | ||
|
||
RUBYGEM_OPTIONS+= --format-executable | ||
|
||
.include "../../lang/ruby/gem.mk" | ||
.include "../../mk/bsd.pkg.mk" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
$NetBSD: distinfo,v 1.7 2015/11/03 03:29:31 agc Exp $ | ||
$NetBSD: distinfo,v 1.8 2017/03/20 12:48:32 taca Exp $ | ||
|
||
SHA1 (thor-0.19.1.gem) = 57d118b7ce6d51be06faab84c4ad5709977e098f | ||
RMD160 (thor-0.19.1.gem) = 639ccda06f7581180a9891ba6fcb3f641ff2ae28 | ||
SHA512 (thor-0.19.1.gem) = e0ca18fd9916a6e14572859607d1d99bc49da662161923192b642a959bb7f679d389af4a5e9f8b9fdf865cb8fc70227eaafe2ca30fd1be70ca076552cd2eb9af | ||
Size (thor-0.19.1.gem) = 91648 bytes | ||
SHA1 (thor-0.19.4.gem) = be200759879238e3d250c77bda59ca130d983ab2 | ||
RMD160 (thor-0.19.4.gem) = cb8966862a6100ba410278fad33945991facd26d | ||
SHA512 (thor-0.19.4.gem) = 3abb55bb1bf2299c92b7ba66afe0ef755d0ba07523ed8231037d9dd5af0a701c6129d3488a582a401a48048b84f4be3e35a52b473636d8dc647f2534dd1ba015 | ||
Size (thor-0.19.4.gem) = 52736 bytes |