Rails Rumble Winners - Gem Teardown
dwellable.com
Rails Rumble Winners - Gem Teardown
1–10 of 30 posts
Re: Rails Rumble Winners - Gem Teardown
#2Re: Rails Rumble Winners - Gem Teardown
#3On a side note, HAML is the best example of technology for technologies sake. It adds a small amount of value while adding the complexity of a new language. I've never felt the "juice was worth the squeeze" so to speak. Curious as to why it has the following that it does.
Re: Rails Rumble Winners - Gem Teardown
#4Very interesting information. Definitely going to have a look at a few gems after this. Thanks for sharing. On a side note, HAML is the best example of technology for technologies sake. It adds a small amount of value while adding the complexity of a new language. I've never felt the "juice was worth the squeeze" so to speak. Curious as to why it has the following that it does.
.a_class{ attrs } some text
which can save a lot when you would otherwise have to write: some text
The never-invalid markup is probably the bigger win, though. Primitive type checking for your HTML is arguably better than none. What I would really like is something similarly terse but faster - HAML can get pretty slow.Re: Rails Rumble Winners - Gem Teardown
#5Very interesting information. Definitely going to have a look at a few gems after this. Thanks for sharing. On a side note, HAML is the best example of technology for technologies sake. It adds a small amount of value while adding the complexity of a new language. I've never felt the "juice was worth the squeeze" so to speak. Curious as to why it has the following that it does.
Never making invalid markup is handy, and if you have easy access to attributes you can: .a_class{ attrs } some text which can save a lot when you would otherwise have to write: some text The never-invalid markup is probably the bigger win, though. Primitive type checking for your HTML is arguably better than none. What I would really like is something similarly terse but faster - HAML can get pretty slow.
I have used HAML on three projects and it always feels like it gets in the way more than it helps.
Re: Rails Rumble Winners - Gem Teardown
#6Very interesting information. Definitely going to have a look at a few gems after this. Thanks for sharing. On a side note, HAML is the best example of technology for technologies sake. It adds a small amount of value while adding the complexity of a new language. I've never felt the "juice was worth the squeeze" so to speak. Curious as to why it has the following that it does.
Never making invalid markup is handy, and if you have easy access to attributes you can: .a_class{ attrs } some text which can save a lot when you would otherwise have to write: some text The never-invalid markup is probably the bigger win, though. Primitive type checking for your HTML is arguably better than none. What I would really like is something similarly terse but faster - HAML can get pretty slow.
to keep it consistent with your haml exampleRe: Rails Rumble Winners - Gem Teardown
#7Very interesting information. Definitely going to have a look at a few gems after this. Thanks for sharing. On a side note, HAML is the best example of technology for technologies sake. It adds a small amount of value while adding the complexity of a new language. I've never felt the "juice was worth the squeeze" so to speak. Curious as to why it has the following that it does.
Never making invalid markup is handy, and if you have easy access to attributes you can: .a_class{ attrs } some text which can save a lot when you would otherwise have to write: some text The never-invalid markup is probably the bigger win, though. Primitive type checking for your HTML is arguably better than none. What I would really like is something similarly terse but faster - HAML can get pretty slow.
Slim is mentioned in the writeup. It's faster than Haml. I like it better.
Re: Rails Rumble Winners - Gem Teardown
#8Re: Rails Rumble Winners - Gem Teardown
#9Re: Rails Rumble Winners - Gem Teardown
#10Nice breakdown. Just a critique, I'm willing to bet that people were using therubyracer to compile CoffeeScript.