<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Front Cube</title>
	<atom:link href="http://frontcube.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://frontcube.com</link>
	<description>FrontCube is a web consulting firm that provides web design and web application development services.</description>
	<lastBuildDate>Mon, 16 Jan 2012 05:54:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Aslam</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-23</link>
		<dc:creator>Aslam</dc:creator>
		<pubDate>Mon, 16 Jan 2012 05:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-23</guid>
		<description>You are welcome! :)
</description>
		<content:encoded><![CDATA[<p>You are welcome! <img src='http://frontcube.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Nuwan Chaturanga</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-22</link>
		<dc:creator>Nuwan Chaturanga</dc:creator>
		<pubDate>Mon, 16 Jan 2012 03:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-22</guid>
		<description>Thanks Aslam for the explanation it makes sense now. 

</description>
		<content:encoded><![CDATA[<p>Thanks Aslam for the explanation it makes sense now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Aslam</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-21</link>
		<dc:creator>Aslam</dc:creator>
		<pubDate>Sun, 15 Jan 2012 18:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-21</guid>
		<description>Hey Nuwan, glad to see you here. 

If you noticed closely, I&#039;ve written this blog post when I used version 3.0 which didn&#039;t support asset pipeline.

Also I think you&#039;ve misunderstood the difference between Compass and SASS. SASS is an extension of CSS and Compass is a CSS Authoring Framework which uses SASS.

Compass comes with many useful stuffs out of the box. It has CSS grid framework Blueprint built in. So, when you need to use Blueprint, you just need to include a single line of code. &quot;@import blueprint&quot; 

Another main advantage of using Compass is, we can use &quot;Blueprint&quot; grid system with semantic markup. If you directly use &quot;Blueprint&quot;, you have to use &#039;span-*&#039; classes to specify the grid with. If you use Compass, it provides grid widths as mixins. So, we can give a semantic class for the particular HTML element (eg. div) and use the Compass mixin to specify the width.

&lt;code&gt;
.sidebar
  +column(12)
&lt;/code&gt;

Last but not least, if you do front-end design, you know the pain of writing vender prefix for CSS3 styles. For an instance, to get border-radius working in non-CSS3 supported browsers we should write following vender prefixes.

&lt;code&gt;
.sidebar {
  -moz-border-radius: 4px;  -webkit-border-radius: 4px;  -o-border-radius: 4px;  -ms-border-radius: 4px;  -khtml-border-radius: 4px;  border-radius: 4px; 
}
&lt;/code&gt;

But, if you use Compass you can accomplish this by writing a single line mixin.

&lt;code&gt;
.sidebar
   +border-radius(4px)
&lt;/code&gt;

Therefore, even Rails 3.1 supports asset pipeline, SASS is not capable of doing those awesome stuffs. :)</description>
		<content:encoded><![CDATA[<p>Hey Nuwan, glad to see you here. </p>
<p>If you noticed closely, I&#8217;ve written this blog post when I used version 3.0 which didn&#8217;t support asset pipeline.</p>
<p>Also I think you&#8217;ve misunderstood the difference between Compass and SASS. SASS is an extension of CSS and Compass is a CSS Authoring Framework which uses SASS.</p>
<p>Compass comes with many useful stuffs out of the box. It has CSS grid framework Blueprint built in. So, when you need to use Blueprint, you just need to include a single line of code. &#8220;@import blueprint&#8221; </p>
<p>Another main advantage of using Compass is, we can use &#8220;Blueprint&#8221; grid system with semantic markup. If you directly use &#8220;Blueprint&#8221;, you have to use &#8216;span-*&#8217; classes to specify the grid with. If you use Compass, it provides grid widths as mixins. So, we can give a semantic class for the particular HTML element (eg. div) and use the Compass mixin to specify the width.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.sidebar<br />
  +column(12)</div></td></tr></tbody></table></div>
<p>Last but not least, if you do front-end design, you know the pain of writing vender prefix for CSS3 styles. For an instance, to get border-radius working in non-CSS3 supported browsers we should write following vender prefixes.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br />3<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.sidebar {<br />
  -moz-border-radius: 4px;  -webkit-border-radius: 4px;  -o-border-radius: 4px;  -ms-border-radius: 4px;  -khtml-border-radius: 4px;  border-radius: 4px; <br />
}</div></td></tr></tbody></table></div>
<p>But, if you use Compass you can accomplish this by writing a single line mixin.</p>
<div class="codecolorer-container text mac-classic" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">.sidebar<br />
&nbsp; &nbsp;+border-radius(4px)</div></td></tr></tbody></table></div>
<p>Therefore, even Rails 3.1 supports asset pipeline, SASS is not capable of doing those awesome stuffs. <img src='http://frontcube.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Nuwan Chaturanga</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-20</link>
		<dc:creator>Nuwan Chaturanga</dc:creator>
		<pubDate>Sun, 15 Jan 2012 04:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-20</guid>
		<description>In Rails version &gt; 3 projects with asset pipeline enabled before pushing to heroku I normally run rake assets:precompile which compiles all the css/scss/sass and js/coffee  files to public/app.(minificated and compressed)

Aslam,

I am wondering if there any reason to use compass when asset pipeline provides what compass does. 
</description>
		<content:encoded><![CDATA[<p>In Rails version &gt; 3 projects with asset pipeline enabled before pushing to heroku I normally run rake assets:precompile which compiles all the css/scss/sass and js/coffee  files to public/app.(minificated and compressed)</p>
<p>Aslam,</p>
<p>I am wondering if there any reason to use compass when asset pipeline provides what compass does. </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Tom</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-19</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Wed, 13 Apr 2011 06:15:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-19</guid>
		<description>What about the Heroku documentation on this subject : http://devcenter.heroku.com/articles/using-compass ?</description>
		<content:encoded><![CDATA[<p>What about the Heroku documentation on this subject : <a href="http://devcenter.heroku.com/articles/using-compass" rel="nofollow">http://devcenter.heroku.com/articles/using-compass</a> ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Stephen Touset</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-18</link>
		<dc:creator>Stephen Touset</dc:creator>
		<pubDate>Wed, 13 Apr 2011 01:21:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-18</guid>
		<description>This will produce failures if you have more than one dyno.

Web browser makes a request to the page, stylesheets are compiled on that dyno. Web browser makes a request for the stylesheets, hits a separate dyno. Stylesheets don&#039;t exist. Instant FOUC.</description>
		<content:encoded><![CDATA[<p>This will produce failures if you have more than one dyno.</p>
<p>Web browser makes a request to the page, stylesheets are compiled on that dyno. Web browser makes a request for the stylesheets, hits a separate dyno. Stylesheets don&#8217;t exist. Instant FOUC.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Travis Choma</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-17</link>
		<dc:creator>Travis Choma</dc:creator>
		<pubDate>Thu, 31 Mar 2011 16:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-17</guid>
		<description>Thanks for this!</description>
		<content:encoded><![CDATA[<p>Thanks for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Aslam</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-16</link>
		<dc:creator>Aslam</dc:creator>
		<pubDate>Thu, 31 Mar 2011 14:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-16</guid>
		<description>Yes, I guessed that. Anyway, glad you realized the pitfalls. :)</description>
		<content:encoded><![CDATA[<p>Yes, I guessed that. Anyway, glad you realized the pitfalls. <img src='http://frontcube.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Akash Manohar</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-15</link>
		<dc:creator>Akash Manohar</dc:creator>
		<pubDate>Thu, 31 Mar 2011 12:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-15</guid>
		<description>Agree :) and that was me SingAlong on HN</description>
		<content:encoded><![CDATA[<p>Agree <img src='http://frontcube.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  and that was me SingAlong on HN</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to get SASS to work with Rails 3 on Heroku (without using any plugins) by Aslam</title>
		<link>http://frontcube.com/blog/2011/how-to-get-sass-to-work-with-rails-3-on-heroku-without-using-any-plugins#comment-14</link>
		<dc:creator>Aslam</dc:creator>
		<pubDate>Thu, 31 Mar 2011 12:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://frontcube.com/?p=168#comment-14</guid>
		<description>You have given a good answer in HN. http://news.ycombinator.com/item?id=2391125

HN full thread: http://news.ycombinator.com/item?id=2390673</description>
		<content:encoded><![CDATA[<p>You have given a good answer in HN. <a href="http://news.ycombinator.com/item?id=2391125" rel="nofollow">http://news.ycombinator.com/item?id=2391125</a></p>
<p>HN full thread: <a href="http://news.ycombinator.com/item?id=2390673" rel="nofollow">http://news.ycombinator.com/item?id=2390673</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

