-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update ruby-rainbow to 1.99.1. Part of PR/48447.
Changelog (per Changelog.md) ## 1.99.0 (2013-12-26) * preparation for dropping String monkey patching * `require "rainbow/string"` if you want to use monkey patched String * introduction of Rainbow() wrapper * support for MRI 1.8.7, 1.9.2, 1.9.3, 2.0 and 2.1, JRuby and Rubinius * deprecation of Sickill::Rainbow namespace (use Rainbow.enabled = true instead) ## 1.99.1 (2013-12-28) * drop support for ruby 1.8 * `require "rainbow/string"` -> `require "rainbow/ext/string"` * custom rainbow wrapper instances (with separate enabled/disabled state) * shortcut methods for changing text color (`Rainbow("foo").red`)
- Loading branch information
tsutsui
committed
Jan 17, 2014
1 parent
13674f2
commit 0272abe
Showing
3 changed files
with
35 additions
and
11 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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# $NetBSD: Makefile,v 1.1 2013/05/09 15:53:32 mef Exp $ | ||
# $NetBSD: Makefile,v 1.2 2014/01/17 18:16:27 tsutsui Exp $ | ||
# | ||
|
||
DISTNAME= rainbow-1.1.4 | ||
DISTNAME= rainbow-1.99.1 | ||
CATEGORIES= misc | ||
|
||
MAINTAINER= [email protected] | ||
|
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,10 +1,34 @@ | ||
@comment $NetBSD: PLIST,v 1.1 2013/05/09 15:53:32 mef Exp $ | ||
@comment $NetBSD: PLIST,v 1.2 2014/01/17 18:16:27 tsutsui Exp $ | ||
${GEM_HOME}/cache/${GEM_NAME}.gem | ||
${GEM_LIBDIR}/Changelog | ||
${GEM_LIBDIR}/.gitignore | ||
${GEM_LIBDIR}/.rubocop.yml | ||
${GEM_LIBDIR}/.travis.yml | ||
${GEM_LIBDIR}/Changelog.md | ||
${GEM_LIBDIR}/Gemfile | ||
${GEM_LIBDIR}/Guardfile | ||
${GEM_LIBDIR}/LICENSE | ||
${GEM_LIBDIR}/README.markdown | ||
${GEM_LIBDIR}/lib/ansi_color.rb | ||
${GEM_LIBDIR}/lib/ansi_rgb.rb | ||
${GEM_LIBDIR}/Rakefile | ||
${GEM_LIBDIR}/lib/rainbow.rb | ||
${GEM_LIBDIR}/test/rainbow_test.rb | ||
${GEM_LIBDIR}/lib/rainbow/color.rb | ||
${GEM_LIBDIR}/lib/rainbow/ext/string.rb | ||
${GEM_LIBDIR}/lib/rainbow/global.rb | ||
${GEM_LIBDIR}/lib/rainbow/legacy.rb | ||
${GEM_LIBDIR}/lib/rainbow/null_presenter.rb | ||
${GEM_LIBDIR}/lib/rainbow/presenter.rb | ||
${GEM_LIBDIR}/lib/rainbow/string_utils.rb | ||
${GEM_LIBDIR}/lib/rainbow/version.rb | ||
${GEM_LIBDIR}/lib/rainbow/wrapper.rb | ||
${GEM_LIBDIR}/rainbow.gemspec | ||
${GEM_LIBDIR}/spec/integration/instance_spec.rb | ||
${GEM_LIBDIR}/spec/integration/rainbow_spec.rb | ||
${GEM_LIBDIR}/spec/integration/string_spec.rb | ||
${GEM_LIBDIR}/spec/spec_helper.rb | ||
${GEM_LIBDIR}/spec/support/presenter_shared_examples.rb | ||
${GEM_LIBDIR}/spec/unit/color_spec.rb | ||
${GEM_LIBDIR}/spec/unit/namespace_spec.rb | ||
${GEM_LIBDIR}/spec/unit/null_presenter_spec.rb | ||
${GEM_LIBDIR}/spec/unit/presenter_spec.rb | ||
${GEM_LIBDIR}/spec/unit/string_utils_spec.rb | ||
${GEM_LIBDIR}/spec/unit/wrapper_spec.rb | ||
${GEM_HOME}/specifications/${GEM_NAME}.gemspec |
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,5 +1,5 @@ | ||
$NetBSD: distinfo,v 1.1 2013/05/09 15:53:32 mef Exp $ | ||
$NetBSD: distinfo,v 1.2 2014/01/17 18:16:27 tsutsui Exp $ | ||
|
||
SHA1 (rainbow-1.1.4.gem) = 28dec847c69f244a93de9f2593ef42b9dfc3146d | ||
RMD160 (rainbow-1.1.4.gem) = 67ebbc881ba281b5756109fc11209991903e9087 | ||
Size (rainbow-1.1.4.gem) = 7680 bytes | ||
SHA1 (rainbow-1.99.1.gem) = c5d74415b9ea9fc83eb6f6e819e2bdce3f40c32d | ||
RMD160 (rainbow-1.99.1.gem) = abd518ac2d30ea29ccc83fd43ea5c908256b2f17 | ||
Size (rainbow-1.99.1.gem) = 14336 bytes |