This file contains hidden or 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
<template> | |
<h1>I expect:</h1> | |
<div> | |
<strong>this</strong>: that<br> | |
<strong>those</strong>: these<br> | |
</div> | |
<h1>But I get:</h1> | |
<div repeat.for="[a,b] of stuff"> | |
<strong>${a}</strong>: ${b}<br> |
This file contains hidden or 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 OrganizationalUnitsController < ApplicationController | |
def show | |
@organizational_unit = @directory.search( params[:id], :base ) | |
end | |
end | |
require 'treequel/model' | |
require 'treequel/model/objectclass' |
This file contains hidden or 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 Sheen | |
include Celluloid::Actor | |
def initialize(name) | |
@name = name | |
end | |
def current_status | |
"#{@name} is winning!" | |
end |