Ramon Tayag

Results 38 comments of Ramon Tayag

I think this is a fine idea. Yes nesting would make it complicated. I've also seen names like `Assets:Cash`, `Assets:Checking`

It's probably not possible without changing the gem, which IMO isn't needed. You should be able to just create your own accounts on your project and make a 1:1 association...

I'm thinking of having a native model in my app called `Account`. A `Plutus::Account` would belong to this `Account` (via tenancy), and the `Account` would have one `Plutus::Account`. On `Account`,...

It seems like the approach that is most flexible to all would be to create local models that own a plutus account. The plutus account would be used just for...

I worked on this with @j-concepcion. Is there anything we can do to get this merged? Do you want us to test anything else?

Just updated this to 1) get it mergeable again, 2) follow the format of changelog

Thanks! It looks like it's failing for some other reason.

Sorry - I forgot to mention that I am using machinist 2.

FWIW, making a helper to clean up the markup in your templates works: ```ruby def component(cell_class, opts, &body) cell(CardBoxCell, nil, opts).() do capture(&body) end end ``` Cell view: ```ruby class...