diff options
author | taca <taca@pkgsrc.org> | 2013-09-15 16:16:26 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2013-09-15 16:16:26 +0000 |
commit | 22f2a41f84f614bd26e70217b10d1e194d207fc1 (patch) | |
tree | c92cf6934d96a7b01568ffee8d4798e11260709b | |
parent | bc7af527910b675f21d4ff8bebed63338cc15a37 (diff) | |
download | pkgsrc-22f2a41f84f614bd26e70217b10d1e194d207fc1.tar.gz |
Update ruby-haml to 4.0.3.
## 4.0.3
Released May 21, 2013 ([diff](https://github.com/haml/haml/compare/4.0.2...4.0.3)).
* Compatibility with newer versions of Rails's Erubis handler.
* Fix Erubis handler for compatibility with Tilt 1.4.x, too.
* Small performance optimization for html_escape.
(thanks [Lachlan Sylvester](https://github.com/lsylvester))
* Documentation fixes.
* Documented some helper methods that were left out of the reference.
(thanks [Shane Riley](https://github.com/shaneriley))
## 4.0.2
Released April 5, 2013 ([diff](https://github.com/haml/haml/compare/4.0.1...4.0.2)).
* Explicitly require Erubis to work around bug in older versions of Tilt.
* Fix :erb filter printing duplicate content in Rails views.
(thanks [Jori Hardman](https://github.com/jorihardman))
* Replace range with slice to reduce objects created by `capture_haml`.
(thanks [Tieg Zaharia](https://github.com/tiegz))
* Correct/improve some documentation.
## 4.0.1
Released March 21, 2013 ([diff](https://github.com/haml/haml/compare/4.0.0...4.0.1)).
* Remove Rails 3.2.3+ textarea hack in favor of a more general solution.
* Fix some performance regressions.
* Fix support for Rails 4 `text_area` helper method.
* Fix data attribute flattening with singleton objects.
(thanks [Alisdair McDiarmid](https://github.com/alisdair))
* Fix support for sass-rails 4.0 beta.
(thanks [Ryunosuke SATO](https://github.com/tricknotes))
* Load "haml/template" in Railtie in order to prevent user options set in a
Rails initializer from being overwritten
* Don't depend on Rails in haml/template to allow using Haml with ActionView
but without Rails itself. (thanks [Hunter Haydel](https://github.com/wedgex))
-rw-r--r-- | textproc/ruby-haml/Makefile | 4 | ||||
-rw-r--r-- | textproc/ruby-haml/PLIST | 8 | ||||
-rw-r--r-- | textproc/ruby-haml/distinfo | 8 |
3 files changed, 11 insertions, 9 deletions
diff --git a/textproc/ruby-haml/Makefile b/textproc/ruby-haml/Makefile index 0cf002b7989..55d23d5f782 100644 --- a/textproc/ruby-haml/Makefile +++ b/textproc/ruby-haml/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.13 2013/03/12 15:36:09 taca Exp $ +# $NetBSD: Makefile,v 1.14 2013/09/15 16:16:26 taca Exp $ -DISTNAME= haml-4.0.0 +DISTNAME= haml-4.0.3 CATEGORIES= textproc MAINTAINER= pkgsrc-users@NetBSD.org diff --git a/textproc/ruby-haml/PLIST b/textproc/ruby-haml/PLIST index 907ac4ea068..6bd142184d1 100644 --- a/textproc/ruby-haml/PLIST +++ b/textproc/ruby-haml/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.11 2013/03/12 15:36:09 taca Exp $ +@comment $NetBSD: PLIST,v 1.12 2013/09/15 16:16:26 taca Exp $ bin/haml ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/.yardopts @@ -20,7 +20,6 @@ ${GEM_LIBDIR}/lib/haml/helpers.rb ${GEM_LIBDIR}/lib/haml/helpers/action_view_extensions.rb ${GEM_LIBDIR}/lib/haml/helpers/action_view_mods.rb ${GEM_LIBDIR}/lib/haml/helpers/action_view_xss_mods.rb -${GEM_LIBDIR}/lib/haml/helpers/rails_323_textarea_fix.rb ${GEM_LIBDIR}/lib/haml/helpers/safe_erubis_template.rb ${GEM_LIBDIR}/lib/haml/helpers/xss_mods.rb ${GEM_LIBDIR}/lib/haml/options.rb @@ -41,7 +40,9 @@ ${GEM_LIBDIR}/test/filters_test.rb ${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-3.0.x ${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-3.1.x ${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-3.2.x -${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-master +${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-3.2.x.lock +${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-4.0.x +${GEM_LIBDIR}/test/gemfiles/Gemfile.rails-4.0.x.lock ${GEM_LIBDIR}/test/helper_test.rb ${GEM_LIBDIR}/test/markaby/standard.mab ${GEM_LIBDIR}/test/mocks/article.rb @@ -73,6 +74,7 @@ ${GEM_LIBDIR}/test/templates/_layout.erb ${GEM_LIBDIR}/test/templates/_layout_for_partial.haml ${GEM_LIBDIR}/test/templates/_partial.haml ${GEM_LIBDIR}/test/templates/_text_area.haml +${GEM_LIBDIR}/test/templates/_text_area_helper.html.haml ${GEM_LIBDIR}/test/templates/action_view.haml ${GEM_LIBDIR}/test/templates/action_view_ugly.haml ${GEM_LIBDIR}/test/templates/breakage.haml diff --git a/textproc/ruby-haml/distinfo b/textproc/ruby-haml/distinfo index ad8331bbcaf..7663165351b 100644 --- a/textproc/ruby-haml/distinfo +++ b/textproc/ruby-haml/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.12 2013/03/12 15:36:09 taca Exp $ +$NetBSD: distinfo,v 1.13 2013/09/15 16:16:26 taca Exp $ -SHA1 (haml-4.0.0.gem) = dd35eda28a98d70d75f4a0c07cdb20f6920e5a2d -RMD160 (haml-4.0.0.gem) = 8251b0d1a8704ceaa19d220c28cda5bfae630bbf -Size (haml-4.0.0.gem) = 112128 bytes +SHA1 (haml-4.0.3.gem) = e1c9efff4f7e24ec2775089c51d8d57866bfe00c +RMD160 (haml-4.0.3.gem) = 6ec5eb7aec9a7ea050ca1fad7adc8a42c87856d3 +Size (haml-4.0.3.gem) = 115712 bytes |