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
blueprint: | |
name: Sensor Light | |
description: > | |
# 💡 Sensor Light | |
**Version: 6.5** | |
Your lighting experience, your way - take control and customize it to perfection! 💡✨ |
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 Base | |
A_VALUE = 2 | |
def foo | |
end | |
end | |
module Refiner | |
refine Base do | |
def foo | |
old_value = super |
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
/* | |
* Javascript provider idiom illustrated | |
* @author Susan Potter | |
* @date 2011-01-28 | |
*/ | |
// FinEnv "interface" | |
var FinEnv = function () { | |
return { | |
println: function (output) { |