pkgsrc/www/ruby-innate/Makefile

15 lines
367 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.6 2012/12/17 15:10:12 taca Exp $
2009-11-19 15:06:44 +01:00
DISTNAME= innate-2012.12
2009-11-19 15:06:44 +01:00
CATEGORIES= devel
MAINTAINER= filip@joyent.com
HOMEPAGE= http://github.com/manveru/innate
COMMENT= Powerful web-framework wrapper for Rack
LICENSE= mit
Update ruby-innate to 2012.03. [f133be7 | Wed Mar 07 18:27:47 UTC 2012] Michael Fellinger <m.fellinger@gmail.com> * Version 2012.03 [cab2aef | Wed Mar 07 18:27:21 UTC 2012] Michael Fellinger <m.fellinger@gmail.com> * update dependency to rack 1.4.1 [e474964 | Thu Mar 01 19:22:58 UTC 2012] Yorick Peterse <yorickpeterse@gmail.com> * Fixed various YARD formatting issues. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [d82fd1e | Sun Feb 26 13:22:09 UTC 2012] Michael Fellinger <m.fellinger@gmail.com> * Enable the render helper to render views without corresponding method if needs_method is enabled [918974e | Sun Feb 26 12:45:50 UTC 2012] Michael Fellinger <m.fellinger@gmail.com> * Fix initialize of Rack::Cascade on 1.4.1 [0e298de | Wed Dec 28 17:57:58 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * Here comes a better Innate::Cache::register, now with less warnings and more speed [d8a1da4 | Wed Dec 28 05:06:07 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * Version 2011.12 [13f9372 | Wed Dec 28 04:54:29 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * less obfuscation ftw [10cf300 | Wed Dec 28 04:54:09 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * minor cleanup around specs [7f61483 | Wed Dec 28 04:53:40 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * Update to Rack 1.4.0 [575e900 | Thu Dec 08 17:05:04 UTC 2011] Michael Fellinger <m.fellinger@gmail.com> * Update travis config [037f35a | Sun Nov 06 12:18:30 UTC 2011] Yorick Peterse <yorickpeterse@gmail.com> * Revert "AOP calls can now be stacked." This reverts commit 3ceb18dae7b774ab9b21cba6538b217ba35d5e21. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com> [3ceb18d | Sun Nov 06 11:30:51 UTC 2011] Yorick Peterse <yorickpeterse@gmail.com> * AOP calls can now be stacked. This means that calling methods such as before_all() or before() multiple times in the same controller will no longer in these calls overwriting previously defined ones. A short example of this is the following: class Posts Innate.node('/posts') helper :aspect NUMBERS = [] before_all do NUMBERS << 10 end before_all do NUMBERS << 20 end def index return NUMBERS end end Visiting /posts would result in "[10, 20]" being displayed in the browser. Signed-off-by: Yorick Peterse <yorickpeterse@gmail.com>
2012-03-20 14:52:43 +01:00
DEPENDS+= ${RUBY_PKGPREFIX}-rack>=1.4.1<1.5:../../www/ruby-rack
2009-11-19 15:06:44 +01:00
.include "../../lang/ruby/gem.mk"
2009-11-19 15:06:44 +01:00
.include "../../mk/bsd.pkg.mk"