-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hey folks,
I'm migrating a Website from Rails 2 (latest) to Rails 3 (beta2).
Testing with Ruby 1.9.1p378 and Ruby 1.9.2dev (2010-04-05 trunk 27225)
Stuck in a situation, i don't know which part will work well. Suspect yield is the problem, but don't know exactly.
In my Layout Files I use the following…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I've been working on an ECMAScript dialect for quite some time now and have reached a point where I am comfortable adding new language features. I would love to hear some thoughts and suggestions on the syntax.
Example
generator {
yield 1;
yield 2;
yield 3;
if (true) {
yield…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I have following code:
private void ProcessQueue()
{
foreach (MessageQueueItem item in GetNextQueuedItem())
PerformAction(item);
}
private IEnumerable<MessageQueueItem> GetNextQueuedItem()
{
if (_messageQueue.Count > 0)
yield return _messageQueue.Dequeue();
}
Initially…
>>> More
-
as seen on Programmers
- Search for 'Programmers'
I've been working on an ECMAScript dialect for quite some time now and have reached a point where I am comfortable adding new language features. I would love to hear some thoughts and suggestions on the syntax.
Example
iterator Numbers {
yield 1;
yield 2;
yield 3;
if (true) {
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi
How can I use yield for template inheritance in erb? I want to use erb in a plain ruby CGI script and want to use a base template and subtemplate like it Rails with the application template does.
>>> More