2 computed properties based on the same dependency fire only once
Having 2 computed properties based on the same dependency only one
computed property runs. The docs says that it is cached what about a
situation when I'd like to have the following:
foo: (->
console.log 'foo'
).observes('dependency')
bar: (->
console.log 'bar'
).observes('dependency')
Now the bar isn't called and I have to resort to observer. Can I make it
work?