This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
Alex Chaffee (author)
Mon Nov 16 09:41:53 -0800 2009
erector /
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Apr 06 00:00:04 -0700 2009 | |
| |
History.txt | Mon Nov 16 09:41:53 -0800 2009 | |
| |
README.txt | Sat Oct 31 07:36:21 -0700 2009 | |
| |
RUNNING_TESTS.md | Sun Apr 05 11:48:43 -0700 2009 | |
| |
Rakefile | Sun Nov 15 08:58:02 -0800 2009 | |
| |
VERSION.yml | Sat Oct 24 07:08:27 -0700 2009 | |
| |
api-announce.txt | Mon Apr 20 18:22:25 -0700 2009 | |
| |
bin/ | Tue Nov 10 15:31:26 -0800 2009 | |
| |
cruise_config.rb | Tue Jun 30 13:11:32 -0700 2009 | |
| |
doc/ | Sat Oct 17 12:26:01 -0700 2009 | |
| |
erector.gemspec | Mon Nov 16 09:27:06 -0800 2009 | |
| |
examples/ | Sun Nov 15 08:58:00 -0800 2009 | |
| |
geminstaller.yml | Mon Oct 26 17:31:06 -0700 2009 | |
| |
install.rb | Wed Feb 13 12:06:05 -0800 2008 | |
| |
lib/ | Mon Nov 16 09:41:53 -0800 2009 | |
| |
rails/ | Tue Nov 10 15:31:26 -0800 2009 | |
| |
spec/ | Sun Nov 15 12:14:51 -0800 2009 | |
| |
tasks/ | Tue Jul 29 22:45:48 -0700 2008 | |
| |
testimonials.txt | Thu Sep 10 14:30:15 -0700 2009 | |
| |
uninstall.rb | Wed Feb 13 12:06:05 -0800 2008 | |
| |
web/ | Mon Nov 16 09:41:53 -0800 2009 |
README.txt
= Erector * http://erector.rubyforge.org * mailto:erector@googlegroups.com * http://www.pivotaltracker.com/projects/482 == DESCRIPTION Erector is a Builder-like view framework, inspired by Markaby but overcoming some of its flaws. In Erector all views are objects, not template files, which allows the full power of object-oriented programming (inheritance, modular decomposition, encapsulation) in views. See the rdoc for the Erector::Widget class to learn how to make your own widgets, and visit the project site at http://erector.rubyforge.org for more documentation. No, seriously, we've got hella docs at http://erector.rubyforge.org == SYNOPSIS require 'erector' class Hello < Erector::Widget def content html do head do title "Hello" end body do text "Hello, " b @target, :class => 'big' text "!" end end end end Hello.new(:target => 'world').to_s => "<html><head><title>Hello</title></head><body>Hello, <b class=\"big\">world</b>!</body></html>" include Erector::Mixin erector { div "love", :class => "big" } => "<div class=\"big\">love</div>" == REQUIREMENTS The gem depends on rake and treetop, although this is just for using the command-line tool, so deployed applications won't need these. The Rails-dependent code is now separated so you can use Erector cleanly in a non-Rails app. == INSTALL To install as a gem: * sudo gem install erector Then add "require 'erector'" to any files which need erector. To install as a Rails plugin: * Copy the erector source to vendor/plugins/erector in your Rails directory. When installing this way, erector is automatically available to your Rails code (no require directive is needed). == CREDITS: Core Team: * Alex Chaffee * Brian Takita Special Thanks To: * Abby (Chaffee's muse & Best friend) * Jim Kingdon * Jeff Dean * John Firebaugh * Nathan Sobo * Nick Kallen == LICENSE: (The MIT License) Copyright (c) 2007-2009 Pivotal Labs Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.







