-
Notifications
You must be signed in to change notification settings - Fork 163
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial import of camping-1.5 as www/camping.
Camping is a web framework which consistently stays at less than 4kb of code. You can probably view the complete source code on a single page. But, you know, it's so small that, if you think about it, what can it really do? The idea here is to store a complete fledgling web application in a single file like many small CGIs. But to organize it as a Model-View-Controller application like Rails does. You can then easily move it to Rails once you've got it going.
- Loading branch information
1 parent
3c038e0
commit eca32ea
Showing
4 changed files
with
59 additions
and
0 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,9 @@ | ||
Camping is a web framework which consistently stays at less than 4kb | ||
of code. You can probably view the complete source code on a single | ||
page. But, you know, it's so small that, if you think about it, what | ||
can it really do? | ||
|
||
The idea here is to store a complete fledgling web application in a | ||
single file like many small CGIs. But to organize it as a | ||
Model-View-Controller application like Rails does. You can then easily | ||
move it to Rails once you've got it going. |
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,15 @@ | ||
# $NetBSD: Makefile,v 1.1.1.1 2008/04/04 15:22:40 jlam Exp $ | ||
|
||
DISTNAME= camping-1.5 | ||
CATEGORIES= www | ||
|
||
MAINTAINER= [email protected] | ||
HOMEPAGE= http://code.whytheluckystiff.net/camping | ||
COMMENT= Ruby micro-framework for web applications | ||
|
||
DEPENDS+= ${RUBY_PKGPREFIX}-activesupport>=1.3.1:../../devel/ruby-activesupport | ||
DEPENDS+= ${RUBY_PKGPREFIX}-markaby>=0.5:../../textproc/ruby-markaby | ||
DEPENDS+= ${RUBY_PKGPREFIX}-metaid>=1.0:../../devel/ruby-metaid | ||
|
||
.include "../../misc/rubygems/rubygem.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
@comment $NetBSD: PLIST,v 1.1.1.1 2008/04/04 15:22:40 jlam Exp $ | ||
bin/camping | ||
${GEM_HOME}/cache/camping-${PKGVERSION}.gem | ||
${GEM_LIBDIR}/CHANGELOG | ||
${GEM_LIBDIR}/COPYING | ||
${GEM_LIBDIR}/README | ||
${GEM_LIBDIR}/Rakefile | ||
${GEM_LIBDIR}/bin/camping | ||
${GEM_LIBDIR}/doc/camping.1.gz | ||
${GEM_LIBDIR}/examples/blog.rb | ||
${GEM_LIBDIR}/examples/campsh.rb | ||
${GEM_LIBDIR}/examples/tepee.rb | ||
${GEM_LIBDIR}/extras/Camping.gif | ||
${GEM_LIBDIR}/extras/flipbook_rdoc.rb | ||
${GEM_LIBDIR}/extras/permalink.gif | ||
${GEM_LIBDIR}/lib/camping-unabridged.rb | ||
${GEM_LIBDIR}/lib/camping.rb | ||
${GEM_LIBDIR}/lib/camping/db.rb | ||
${GEM_LIBDIR}/lib/camping/fastcgi.rb | ||
${GEM_LIBDIR}/lib/camping/reloader.rb | ||
${GEM_LIBDIR}/lib/camping/session.rb | ||
${GEM_LIBDIR}/lib/camping/webrick.rb | ||
${GEM_HOME}/specifications/camping-${PKGVERSION}.gemspec | ||
@dirrm ${GEM_LIBDIR}/lib/camping | ||
@dirrm ${GEM_LIBDIR}/lib | ||
@dirrm ${GEM_LIBDIR}/extras | ||
@dirrm ${GEM_LIBDIR}/examples | ||
@dirrm ${GEM_LIBDIR}/doc | ||
@dirrm ${GEM_LIBDIR}/bin | ||
@dirrm ${GEM_LIBDIR} |
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,5 @@ | ||
$NetBSD: distinfo,v 1.1.1.1 2008/04/04 15:22:40 jlam Exp $ | ||
|
||
SHA1 (camping-1.5.gem) = d0c07de43ca11ac9d70170e077a375132b1ddc9e | ||
RMD160 (camping-1.5.gem) = 5e169901b55fa87608a85eb54392e693ed5830c1 | ||
Size (camping-1.5.gem) = 53760 bytes |