Todd Werth
Todd Werth
In RedPotion, I set this int he template's gemfile.
Yeah, that doesn't really test it. If you actually run animations in tests, bad things happen. You'll see at the top of the file that animations are turned off. You'd...
Yeah, I think it's a good idea. But I agree we'd have to come up with something that worked well when specifying the gap. So currently you'd do this if...
We could use padding, but this doesn't seem very nice: ``` ruby def thing2(st) st.frame = { below: :thing1, right_of: :thing1, w: 10, h: 10, padding: {l: 10, t: 10}...
This isn't very nice either: ``` ruby def thing2(st) st.frame = { below: {thing1: 10}, right_of: {thing1: 10}, w: 10, h: 10 } end ```
I like this one, as it's consistent with `below_prev: 10` ``` ruby def thing2(st) st.frame = { below(:thing1): 10, right_of(:thing1): 10, w: 10, h: 10 } end ``` For 0,...
Thanks Jay. That's very helpful. We can speed this up a lot, but it would mean keeping some state. I wonder if I can speed it up much if I...
I worked on this last night, I can speed it up some, but without benchmarks I don't know if I'm slowing down other scenarios. So I'll wait.
Yes, that was an intention of distribute, to be able to do both horizontal and vertical at the same time. I like this idea
Live reloading doesn't currently work with application setup stuff. Marking as enhancement.