@trey nope, we use straight up ruby gems with bundler + guard. it works just fine
Doug N. Avery
Doug N. Avery
@trey in EE, for example, we had an "assets" dir, which contains the .rvmrc + gemfile + guardfile
Doug N. Avery
@trey it compiles from assets/source to assets/compiled. devs should just be able to get set up, then cd into the dir and run "guard"
Doug N. Avery
@trey sounded complicated at first, but it's actually a pretty clean, repeatable process. everyone uses it, no one seems to have trouble
Doug N. Avery
Doug N. Avery
@averydistracted Is this about right? github.com/trey/guard-is-…
Trey Piepmeier
@trey yep! you could move the guard stuff up a dir, or leave it there — we usually use assets as a "portable flat build" folder when in EE
Doug N. Avery
@trey meaning we usually do a flat build in assets, keep the HTML in assets/markup, and then move the assets dir into the project when ready
Doug N. Avery
@trey i concat and minify with Guard, can show you a sample file. (Sass minifies for you) I don't bless, because i've never hit the limit
Doug N. Avery
@trey here's an example of one i'm using — gist.github.com/2932996 — minifies + concats with Juicer.
Doug N. Avery
Doug N. Avery
@averydistracted I haven't personally, but somebody working on one of our sites just recently did.
Trey Piepmeier
@averydistracted Mind = blown. github.com/trey/guard-is-…
Trey Piepmeier