Created
May 24, 2011 19:24
-
-
Save gregbell/989466 to your computer and use it in GitHub Desktop.
Arbre components in ERB
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
<% self.class.send :include, Arbre::HTML %> | |
<%= panel("Hello"){ h2 @test_assign } %> | |
<%= panel("Hello World"){ } %> |
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
class TestsController < ApplicationController | |
def index | |
@test_assign = "Test Assign" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment