-
Notifications
You must be signed in to change notification settings - Fork 2
/
EXAMPLES
280 lines (204 loc) · 8.24 KB
/
EXAMPLES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
%#----------------------------------------------------------------------------
## EXAMPLES
%#----------------------------------------------------------------------------
Begin by loading Ember into Ruby:
require 'rubygems' # might not be necessary; see HACKING
require 'ember'
Instantiate an Ember template processor:
source = "your eRuby template here"
options = {} # see API documentation
template = Ember::Template.new(source, options)
Inspect the Ruby program that was compiled (and is used) by the Ember
template processor to evaluate the eRuby template given as input:
puts template.program
View the result of evaluating the eRuby template:
puts template.render
See the API documentation for more information.
%#----------------------------------------------------------------------------
<%
def standard body
'<' + '%' + body + ' %' + '>'
end
def shorthand body
'%' + body
end
def example options = {}, &block
Ember::Template.wrap_content_block(block) do |block_content|
input = block_content.join
template = Ember::Template.new(input, options)
[
preformatted(input),
"#{
if options.empty?
'The'
else
"With `#{options.inspect}` options, the"
end
} above template compiles into:",
preformatted(template.program),
'And renders as:',
preformatted(template.render),
].join("\n\n")
end
end
%>
%#----------------------------------------------------------------------------
### An empty template
%#----------------------------------------------------------------------------
% example {}
%#----------------------------------------------------------------------------
### Comment directives
%#----------------------------------------------------------------------------
%|example :shorthand => true
%= standard '# this is a comment'
%= shorthand '# this is also a comment'
%= standard "# this\nis\n\ta\nmulti-line comment"
%#----------------------------------------------------------------------------
### Escaped directives
%#----------------------------------------------------------------------------
%|example :shorthand => true
%= standard '% this is an escaped directive'
%= shorthand '% this is an escaped directive'
%#----------------------------------------------------------------------------
### Vocal directives
%#----------------------------------------------------------------------------
%|example :shorthand => true
%= standard '= "hello"'
%= shorthand '= "world"'
%#----------------------------------------------------------------------------
### Silent directives
%#----------------------------------------------------------------------------
%|example :shorthand => true
%= standard ' a = "hello"'
%= shorthand ' b = "world"'
%= standard '= a'
%= shorthand '= b'
%#----------------------------------------------------------------------------
### Block directives
%#----------------------------------------------------------------------------
%|example :shorthand => true
%= shorthand ' words = %w[hello world]'
%= standard ' words.each do |w|'
%= standard '= w'
%= standard ' end'
%= shorthand ' words.each do |w|'
%= shorthand '= w'
%= shorthand ' end'
%= shorthand '|words.each |w|'
%= shorthand '= w'
%= shorthand ' end'
%#----------------------------------------------------------------------------
### Unindent block content
%#----------------------------------------------------------------------------
%|example :shorthand => true, :unindent => true
%= standard ' [1].each do |i|'
%= standard '= i'
%= shorthand ' [2].each do |j|'
%= shorthand '= j'
%= shorthand '|[3].each |k|'
%= shorthand '= k'
%= shorthand ' end'
%= shorthand ' end'
%= standard ' end'
%#----------------------------------------------------------------------------
### Wrap block content
%#----------------------------------------------------------------------------
In this manner, you can create domain specific languages in eRuby.
%|example :shorthand => true, :unindent => true
<%= standard %q{
def introducing(subject, &block)
Ember::Template.wrap_content_block(block, rand(10)) do |content|
"And now I would like to introduce #{subject}:\n\n#{content.join}"
end
end
def coin_toss(pronoun, &block)
Ember::Template.wrap_content_block(block) do |content|
"#{pronoun} favorite side of a coin toss is #{content.join}."
end
end
} %>
%= shorthand ' introducing "Matz" do |number|'
Father of the Ruby programming language,
and also a jolly and well mannered fellow.
%= shorthand ' coin_toss("His") { number % 2 == 0 ? "heads" : "tails" }'
%= shorthand ' end'
%#----------------------------------------------------------------------------
### Capture block content
%#----------------------------------------------------------------------------
In this manner, you can create domain specific languages in eRuby.
%|example :shorthand => true, :unindent => true
<%= standard %q{
def introducing(subject, &block)
content = Ember::Template.content_from_block(block, rand(2))
buffer = Ember::Template.buffer_from_block(block)
buffer << "introducing(#{subject.inspect}):\n\n#{content.join}"
end
def coin_toss(pronoun, &block)
content = Ember::Template.content_from_block(block)
buffer = Ember::Template.buffer_from_block(block)
buffer << "coin_toss(#{pronoun.inspect}): #{content.join}"
end
} %>
%= shorthand ' introducing "Matz" do |number|'
Father of the Ruby programming language,
and also a jolly and well mannered fellow.
%= shorthand ' coin_toss("His") { number % 2 == 0 ? "heads" : "tails" }'
%= shorthand ' end'
%#----------------------------------------------------------------------------
### Template evaluation result buffer
%#----------------------------------------------------------------------------
In this manner, you can create domain specific languages in eRuby.
%|example :shorthand => true, :unindent => true
<%= standard %q{
def introducing(subject, &block)
buffer = Ember::Template.buffer_from_block(block)
#
# you can do whatever you want with buffer,
# now that you have a reference to it! >:-)
#
buffer << "introducing(#{subject.inspect})"
end
} %>
%= shorthand ' introducing "Matz" do |number|'
Father of the Ruby programming language,
and also a jolly and well mannered fellow.
%= shorthand ' end'
%#----------------------------------------------------------------------------
### Infer block endings
%#----------------------------------------------------------------------------
Omit `<%% end %>` directives from the template:
%|example :shorthand => true, :infer_end => true
%= shorthand ' words = %w[hello world]'
%= standard ' words.each do |w|'
%= standard '= w'
%= shorthand ' words.each do |w|'
%= shorthand '= w'
%= shorthand '|words.each |w|'
%= shorthand '= w'
%#----------------------------------------------------------------------------
### Raw file inclusion
%#----------------------------------------------------------------------------
% file = 'doc/example.txt'
When `<%= file %>` contains:
%= preformatted File.read(file)
And the eRuby template is:
%|example :shorthand => true, :source_file => __FILE__
%= standard "< #{file.inspect}"
%= shorthand "< #{file.inspect}"
%#----------------------------------------------------------------------------
### Template file inclusion
%#----------------------------------------------------------------------------
% file = 'doc/example.erb'
When `<%= file %>` contains:
%= preformatted File.read(file)
And the eRuby template is:
%|example :shorthand => true, :source_file => __FILE__
%= standard "+ #{file.inspect}"
%= shorthand "+ #{file.inspect}"
%#----------------------------------------------------------------------------
### Dynamic template evaluation
%#----------------------------------------------------------------------------
% template = %{~ "#{shorthand '= 2 + 2'}"}
%|example :shorthand => true
%= standard template
%= shorthand template