diff options
author | taca <taca> | 2013-02-11 03:08:05 +0000 |
---|---|---|
committer | taca <taca> | 2013-02-11 03:08:05 +0000 |
commit | 6375a41fc6b6c4d7920ff8ef808a9b7d09d6fbfd (patch) | |
tree | 89522af1590f59c091c8e74b2bed8237566d37c7 /devel/ruby-thor | |
parent | be41626d0753ac4121502a9c37a06ee71bf3d416 (diff) | |
download | pkgsrc-6375a41fc6b6c4d7920ff8ef808a9b7d09d6fbfd.tar.gz |
Update ruby-thor to 0.17.0.
0.17.0, release 2013-01-24
Add better support for tasks that accept arbitrary additional arguments (e.g. things like bundle exec)
Add #stop_on_unknown_option!
Only strip from stdin.gets if it wasn't ended with EOF
Allow "send" as a task name
Allow passing options as arguments after "--"
Autoload Thor::Group
0.16.0, release 2012-08-14
Add enum to string arguments
0.15.4, release 2012-06-29
Fix regression when destination root contains reserved regexp characters
0.15.3, release 2012-06-18
Support strict_args_position! for backwards compatibility
Escape Dir glob characters in paths
0.15.2, released 2012-05-07
Added print_in_columns
Exposed terminal_width as a public API
0.15.1, release 2012-05-06
Fix Ruby 1.8 truncation bug with unicode chars
Fix shell delegate methods to pass their block
Don't output trailing spaces when printing the last column in a table
0.15, released 2012-04-29
Alias method_options to options
Refactor say to allow multiple colors
Exposed error as a public API
Exposed file_collision as a public API
Exposed print_wrapped as a public API
Exposed set_color as a public API
Fix number-formatting bugs in print_table
Fix "indent" typo in print_table
Fix Errno::EPIPE when piping tasks to head
More friendly error messages
Diffstat (limited to 'devel/ruby-thor')
-rw-r--r-- | devel/ruby-thor/Makefile | 4 | ||||
-rw-r--r-- | devel/ruby-thor/PLIST | 17 | ||||
-rw-r--r-- | devel/ruby-thor/distinfo | 8 |
3 files changed, 21 insertions, 8 deletions
diff --git a/devel/ruby-thor/Makefile b/devel/ruby-thor/Makefile index 70cf4b3ad66..e2821f457ba 100644 --- a/devel/ruby-thor/Makefile +++ b/devel/ruby-thor/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2012/06/16 15:55:49 taca Exp $ +# $NetBSD: Makefile,v 1.5 2013/02/11 03:08:05 taca Exp $ -DISTNAME= thor-0.14.6 +DISTNAME= thor-0.17.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/devel/ruby-thor/PLIST b/devel/ruby-thor/PLIST index 293336b4589..1235ae76fab 100644 --- a/devel/ruby-thor/PLIST +++ b/devel/ruby-thor/PLIST @@ -1,9 +1,14 @@ -@comment $NetBSD: PLIST,v 1.3 2010/12/04 04:03:53 taca Exp $ +@comment $NetBSD: PLIST,v 1.4 2013/02/11 03:08:05 taca Exp $ bin/rake2thor bin/thor ${GEM_HOME}/cache/${GEM_NAME}.gem +${GEM_LIBDIR}/.document +${GEM_LIBDIR}/.gitignore +${GEM_LIBDIR}/.rspec +${GEM_LIBDIR}/.travis.yml ${GEM_LIBDIR}/CHANGELOG.rdoc -${GEM_LIBDIR}/LICENSE +${GEM_LIBDIR}/Gemfile +${GEM_LIBDIR}/LICENSE.md ${GEM_LIBDIR}/README.md ${GEM_LIBDIR}/Thorfile ${GEM_LIBDIR}/bin/rake2thor @@ -38,6 +43,7 @@ ${GEM_LIBDIR}/lib/thor/task.rb ${GEM_LIBDIR}/lib/thor/util.rb ${GEM_LIBDIR}/lib/thor/version.rb ${GEM_LIBDIR}/spec/actions/create_file_spec.rb +${GEM_LIBDIR}/spec/actions/create_link_spec.rb ${GEM_LIBDIR}/spec/actions/directory_spec.rb ${GEM_LIBDIR}/spec/actions/empty_directory_spec.rb ${GEM_LIBDIR}/spec/actions/file_manipulation_spec.rb @@ -46,17 +52,23 @@ ${GEM_LIBDIR}/spec/actions_spec.rb ${GEM_LIBDIR}/spec/base_spec.rb ${GEM_LIBDIR}/spec/core_ext/hash_with_indifferent_access_spec.rb ${GEM_LIBDIR}/spec/core_ext/ordered_hash_spec.rb +${GEM_LIBDIR}/spec/exit_condition_spec.rb ${GEM_LIBDIR}/spec/fixtures/application.rb +${GEM_LIBDIR}/spec/fixtures/app{1}/README ${GEM_LIBDIR}/spec/fixtures/bundle/execute.rb ${GEM_LIBDIR}/spec/fixtures/bundle/main.thor ${GEM_LIBDIR}/spec/fixtures/doc/%file_name%.rb.tt +${GEM_LIBDIR}/spec/fixtures/doc/COMMENTER ${GEM_LIBDIR}/spec/fixtures/doc/README ${GEM_LIBDIR}/spec/fixtures/doc/block_helper.rb ${GEM_LIBDIR}/spec/fixtures/doc/components/.empty_directory ${GEM_LIBDIR}/spec/fixtures/doc/config.rb +${GEM_LIBDIR}/spec/fixtures/doc/config.yaml.tt +${GEM_LIBDIR}/spec/fixtures/enum.thor ${GEM_LIBDIR}/spec/fixtures/group.thor ${GEM_LIBDIR}/spec/fixtures/invoke.thor ${GEM_LIBDIR}/spec/fixtures/path with spaces +${GEM_LIBDIR}/spec/fixtures/preserve/script.sh ${GEM_LIBDIR}/spec/fixtures/script.thor ${GEM_LIBDIR}/spec/fixtures/task.thor ${GEM_LIBDIR}/spec/group_spec.rb @@ -76,4 +88,5 @@ ${GEM_LIBDIR}/spec/spec_helper.rb ${GEM_LIBDIR}/spec/task_spec.rb ${GEM_LIBDIR}/spec/thor_spec.rb ${GEM_LIBDIR}/spec/util_spec.rb +${GEM_LIBDIR}/thor.gemspec ${GEM_HOME}/specifications/${GEM_NAME}.gemspec diff --git a/devel/ruby-thor/distinfo b/devel/ruby-thor/distinfo index 8b9fac956d1..3b07f680e48 100644 --- a/devel/ruby-thor/distinfo +++ b/devel/ruby-thor/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.3 2010/12/04 04:03:53 taca Exp $ +$NetBSD: distinfo,v 1.4 2013/02/11 03:08:05 taca Exp $ -SHA1 (thor-0.14.6.gem) = cb09bba64959b0ea470d1b8c266c42858a8f7e11 -RMD160 (thor-0.14.6.gem) = fa3c43a154ecfd5bd1c14557f93ea017eddb02df -Size (thor-0.14.6.gem) = 73216 bytes +SHA1 (thor-0.17.0.gem) = a0b999fb57fbc40ddd422cc82b200ff91f9b0174 +RMD160 (thor-0.17.0.gem) = 5b14102a47c94ebe5aa975e613a604b251776a1f +Size (thor-0.17.0.gem) = 83456 bytes |