github
Advanced Search
  • Home
  • Pricing and Signup
  • Explore GitHub
  • Blog
  • Login

pivotal / erector

  • Admin
  • Watch Unwatch
  • Fork
  • Your Fork
  • Pull Request
  • Download Source
    • 80
    • 11
  • Source
  • Commits
  • Network (11)
  • Issues (1)
  • Downloads (15)
  • Wiki (1)
  • Graphs
  • Branch: master

click here to add a description

click here to add a homepage

  • Branches (12)
    • api-cleanup
    • bigfix
    • command-line-tool-fixes
    • fix_2_2_0
    • inline
    • master ✓
    • output
    • rails-2-0-0
    • rails-2-1-0
    • rails-2-2-0
    • rails-2-2-2
    • using_actionview_buffer
  • Tags (15)
    • v0.7.3
    • v0.7.2
    • v0.7.1
    • v0.7.0
    • v0.6.7
    • v0.6.6
    • v0.6.5
    • v0.6.4
    • v0.6.3
    • v0.6.2
    • v0.6.1
    • v0.6.0
    • REL-0-6-0
    • REL-0-5-1
    • REL-0-5-0
Sending Request…
Enable Donations

Pledgie Donations

Once activated, we'll place the following badge in your repository's detail box:
Pledgie_example
This service is courtesy of Pledgie.

A builder-like widget html generation framework. — Read more

  cancel

http://erector.rubyforge.org

  cancel
  • Private
  • Read-Only
  • HTTP Read-Only

This URL has Read+Write access

Revert "Reintroducting an Output object, to factor out indentation and the 
like." 
Alex Chaffee (author)
Fri Dec 04 09:11:28 -0800 2009
commit  46499e000372f7bae4db9808f7c03aa383b27eec
tree    6473014e1b7e0974ed425c88125d739972e1352c
parent  85de079ec2af1c3eac452b4f888064ade626aed9
erector /
name age
history
message
file .gitignore Mon Apr 06 00:00:04 -0700 2009 Added Erector gemspec so it can be built on Git... [Brian Takita]
file History.txt Tue Dec 01 17:30:07 -0800 2009 Merge remote branch 'remotes/ageweke/master' *... [Alex Chaffee]
file README.txt Sat Oct 31 07:36:21 -0700 2009 added jim to credits (oops) [Alex Chaffee]
file RUNNING_TESTS.md Sun Apr 05 11:48:43 -0700 2009 Added documentation for running tests. [zilkey]
file Rakefile Wed Dec 02 23:21:30 -0800 2009 updating to rails 2.3.5 -- two tests still fail... [Alex Chaffee]
file VERSION.yml Tue Nov 24 20:41:16 -0800 2009 Merge branch 'master' of github.com:pivotal/ere... [Alex Chaffee]
file api-announce.txt Mon Apr 20 18:22:25 -0700 2009 widget method takes instance or class; document... [Alex Chaffee]
directory bin/ Tue Nov 10 15:31:26 -0800 2009 Conform to good gem packaging practices Don't ... [John Firebaugh]
file cruise_config.rb Tue Jun 30 13:11:32 -0700 2009 CI now sends build pass/fail messages to the ma... [Alex Chaffee]
directory doc/ Sat Oct 17 12:26:01 -0700 2009 updated "why wouldn't you" text [Alex Chaffee]
file erector.gemspec Tue Dec 01 17:35:36 -0800 2009 Regenerated gemspec for version 0.7.3 [Alex Chaffee]
directory examples/ Sun Nov 15 08:58:00 -0800 2009 renamed 'blocks' examples to 'chunks' so as not... [Alex Chaffee]
file geminstaller.yml Wed Dec 02 23:37:42 -0800 2009 bump up some geminstaller gem versions [Alex Chaffee]
file install.rb Wed Feb 13 12:06:05 -0800 2008 copied from svn://rubyforge.org/var/svn/pivotal... [alexch]
directory lib/ Fri Dec 04 09:11:28 -0800 2009 Revert "Reintroducting an Output object, to fac... [Alex Chaffee]
directory rails/ Tue Nov 10 15:31:26 -0800 2009 Better Rails initialization init.rb in the rig... [John Firebaugh]
directory spec/ Fri Dec 04 09:11:28 -0800 2009 Revert "Reintroducting an Output object, to fac... [Alex Chaffee]
directory tasks/ Tue Jul 29 22:45:48 -0700 2008 Clean up after 0.4.191 release, including the s... [jkingdon]
file testimonials.txt Thu Sep 10 14:30:15 -0700 2009 documentation changes [Alex Chaffee]
file uninstall.rb Wed Feb 13 12:06:05 -0800 2008 copied from svn://rubyforge.org/var/svn/pivotal... [alexch]
directory web/ Tue Dec 01 17:30:07 -0800 2009 Merge remote branch 'remotes/ageweke/master' *... [Alex Chaffee]
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.
Blog | Support | Training | Contact | API | Status | Twitter | Help | Security
© 2010 GitHub Inc. All rights reserved. | Terms of Service | Privacy Policy
Powered by the Dedicated Servers and
Cloud Computing of Rackspace Hosting®
Dedicated Server