<?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 Technical Ramblings</title>
	<atom:link href="http://jonswope.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://jonswope.com</link>
	<description>More information than you cared to know about whatever I find cool</description>
	<lastBuildDate>Wed, 01 Feb 2012 01:32:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Rails 3 Engines/Plugins and Static Assets by Nicholas Hughes</title>
		<link>http://jonswope.com/2010/07/25/rails-3-engines-plugins-and-static-assets/comment-page-1/#comment-92</link>
		<dc:creator>Nicholas Hughes</dc:creator>
		<pubDate>Wed, 01 Feb 2012 01:32:20 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=68#comment-92</guid>
		<description>@Les

Thanks!

I used your suggestion to mount a Rails 3.1 engine in stage/production. I had to change &quot;#{root}/public&quot; to &quot;#{root}/app/assets&quot; as the engine&#039;s assets are in accordance with Rails&#039; new asset locations.

initializer &quot;static assets&quot; do &#124;app&#124;
      app.middleware.insert_before ::Rack::Lock, ::ActionDispatch::Static, &quot;#{root}/app/assets&quot;
end

I imagine there is a more elegant way to do this, but I could not uncover it today. I hope this helps someone!</description>
		<content:encoded><![CDATA[<p>@Les</p>
<p>Thanks!</p>
<p>I used your suggestion to mount a Rails 3.1 engine in stage/production. I had to change &#8220;#{root}/public&#8221; to &#8220;#{root}/app/assets&#8221; as the engine&#8217;s assets are in accordance with Rails&#8217; new asset locations.</p>
<p>initializer &#8220;static assets&#8221; do |app|<br />
      app.middleware.insert_before ::Rack::Lock, ::ActionDispatch::Static, &#8220;#{root}/app/assets&#8221;<br />
end</p>
<p>I imagine there is a more elegant way to do this, but I could not uncover it today. I hope this helps someone!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Updating Multiple Git Repos by Notger</title>
		<link>http://jonswope.com/2010/01/29/updating-multiple-git-repos/comment-page-1/#comment-91</link>
		<dc:creator>Notger</dc:creator>
		<pubDate>Fri, 27 Jan 2012 22:29:47 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=53#comment-91</guid>
		<description>Thanks for the hint, very useful on my linux machine, but on my windows machine with git, it does not work.
It says &quot;invalid predicate execdir&quot;. Any idea?
(find only seems to know exec which does not execute in the correct directory.)</description>
		<content:encoded><![CDATA[<p>Thanks for the hint, very useful on my linux machine, but on my windows machine with git, it does not work.<br />
It says &#8220;invalid predicate execdir&#8221;. Any idea?<br />
(find only seems to know exec which does not execute in the correct directory.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Passenger can&#8217;t find Rails by tib</title>
		<link>http://jonswope.com/2010/01/24/passenger-cant-find-rails/comment-page-1/#comment-88</link>
		<dc:creator>tib</dc:creator>
		<pubDate>Mon, 08 Aug 2011 13:18:10 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=42#comment-88</guid>
		<description>&lt;blockquote cite=&quot;#commentbody-25&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-25&quot; rel=&quot;nofollow&quot;&gt;MiddleEarther&lt;/a&gt; :&lt;/strong&gt;
          I spent a good part of a day reading google posts before I gave up on this… came back to it and your post fixed it.  I went and added a line to the boot.rb prior to the complaint about failing to load the gem:
      $stderr.puts “Actual load error: ” + load_error
I really don’t see why rails would ever purposefully obscure the real error – sounds like a mistake.
         &lt;/blockquote&gt;
thanks !
and thanks for the author ! you saved my day !

By the way, I&#039;d like to congratulate the author of the original function, this is just magic ! ^^</description>
		<content:encoded><![CDATA[<blockquote cite="#commentbody-25"><p>
<strong><a href="#comment-25" rel="nofollow">MiddleEarther</a> :</strong><br />
          I spent a good part of a day reading google posts before I gave up on this… came back to it and your post fixed it.  I went and added a line to the boot.rb prior to the complaint about failing to load the gem:<br />
      $stderr.puts “Actual load error: ” + load_error<br />
I really don’t see why rails would ever purposefully obscure the real error – sounds like a mistake.
         </p></blockquote>
<p>thanks !<br />
and thanks for the author ! you saved my day !</p>
<p>By the way, I&#8217;d like to congratulate the author of the original function, this is just magic ! ^^</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Engines/Plugins and Static Assets by Les Nightingill</title>
		<link>http://jonswope.com/2010/07/25/rails-3-engines-plugins-and-static-assets/comment-page-1/#comment-87</link>
		<dc:creator>Les Nightingill</dc:creator>
		<pubDate>Sat, 09 Apr 2011 19:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=68#comment-87</guid>
		<description>Well I kinda solved the problem with blank assets, with a bit of hacking. Not sure if there will be side effects but would be interested if others can use this too. 

I moved my ::ActionDispatch::Static middleware up in the rack stack. Instead of app.middleware.use (as Jon has suggested, above) I inserted my engine&#039;s static-serving middleware near the top of the rack stack with
     app.middleware.insert_before ::Rack::Lock, ::ActionDispatch::Static, &quot;#{root}/public&quot;
and presto!</description>
		<content:encoded><![CDATA[<p>Well I kinda solved the problem with blank assets, with a bit of hacking. Not sure if there will be side effects but would be interested if others can use this too. </p>
<p>I moved my ::ActionDispatch::Static middleware up in the rack stack. Instead of app.middleware.use (as Jon has suggested, above) I inserted my engine&#8217;s static-serving middleware near the top of the rack stack with<br />
     app.middleware.insert_before ::Rack::Lock, ::ActionDispatch::Static, &#8220;#{root}/public&#8221;<br />
and presto!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Engines/Plugins and Static Assets by Les Nightingill</title>
		<link>http://jonswope.com/2010/07/25/rails-3-engines-plugins-and-static-assets/comment-page-1/#comment-86</link>
		<dc:creator>Les Nightingill</dc:creator>
		<pubDate>Sat, 09 Apr 2011 18:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=68#comment-86</guid>
		<description>Just to add info to the problems that others (and I) are seeing with blank asset files being delivered...
The engine&#039;s asset files ARE being found (if I try to include a non-existent css file, I get http not found response, but the blank files include http 200, OK, code). But the content is empty! 
(OK locally on my dev machine, though).</description>
		<content:encoded><![CDATA[<p>Just to add info to the problems that others (and I) are seeing with blank asset files being delivered&#8230;<br />
The engine&#8217;s asset files ARE being found (if I try to include a non-existent css file, I get http not found response, but the blank files include http 200, OK, code). But the content is empty!<br />
(OK locally on my dev machine, though).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome Campfire Notifications by Jon Swope</title>
		<link>http://jonswope.com/2011/01/06/chrome-campfire-notifications/comment-page-1/#comment-85</link>
		<dc:creator>Jon Swope</dc:creator>
		<pubDate>Tue, 15 Mar 2011 20:33:48 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=83#comment-85</guid>
		<description>I am looking into some way to do this.  I&#039;m no longer using Campfire, and don&#039;t think it would be a good idea to pay for a campfire subscription solely to develop this extension.  Even if I put the code up on Github, I wouldn&#039;t be able to test contributions before publishing them to the Chrome extension gallery. I&#039;ll likely put the source up and then change the name of the extension so someone else can take over development.

Being an extension, its source is inherently &quot;open&quot; (that is you can poke around at it), if you want to mess with it in the mean time.</description>
		<content:encoded><![CDATA[<p>I am looking into some way to do this.  I&#8217;m no longer using Campfire, and don&#8217;t think it would be a good idea to pay for a campfire subscription solely to develop this extension.  Even if I put the code up on Github, I wouldn&#8217;t be able to test contributions before publishing them to the Chrome extension gallery. I&#8217;ll likely put the source up and then change the name of the extension so someone else can take over development.</p>
<p>Being an extension, its source is inherently &#8220;open&#8221; (that is you can poke around at it), if you want to mess with it in the mean time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome Campfire Notifications by Brock Bland</title>
		<link>http://jonswope.com/2011/01/06/chrome-campfire-notifications/comment-page-1/#comment-84</link>
		<dc:creator>Brock Bland</dc:creator>
		<pubDate>Tue, 15 Mar 2011 18:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=83#comment-84</guid>
		<description>Are you looking to open source the code for this or interested in contributors?  I might be willing to help out with some of the requested features and have a few features I&#039;d like to see myself.</description>
		<content:encoded><![CDATA[<p>Are you looking to open source the code for this or interested in contributors?  I might be willing to help out with some of the requested features and have a few features I&#8217;d like to see myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Rails 3 Engines/Plugins and Static Assets by Bala Paranj</title>
		<link>http://jonswope.com/2010/07/25/rails-3-engines-plugins-and-static-assets/comment-page-1/#comment-83</link>
		<dc:creator>Bala Paranj</dc:creator>
		<pubDate>Sun, 06 Mar 2011 21:59:48 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=68#comment-83</guid>
		<description>Symlinks is a workaround and not a ideal solution. Ideally you want a Rack app to handle all the static assets (html, css, js, images etc). Any pointers on how to do that?</description>
		<content:encoded><![CDATA[<p>Symlinks is a workaround and not a ideal solution. Ideally you want a Rack app to handle all the static assets (html, css, js, images etc). Any pointers on how to do that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome Campfire Notifications by Jon Swope</title>
		<link>http://jonswope.com/2011/01/06/chrome-campfire-notifications/comment-page-1/#comment-82</link>
		<dc:creator>Jon Swope</dc:creator>
		<pubDate>Mon, 07 Feb 2011 21:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=83#comment-82</guid>
		<description>I&#039;ve updated it with an icon in the address bar that allows you to disable/enable notifications, but was waiting for someone to actually say that they needed the persistence options before I implemented them. Guess it&#039;s time to get to work.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve updated it with an icon in the address bar that allows you to disable/enable notifications, but was waiting for someone to actually say that they needed the persistence options before I implemented them. Guess it&#8217;s time to get to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Chrome Campfire Notifications by Gyi Tsakalakis</title>
		<link>http://jonswope.com/2011/01/06/chrome-campfire-notifications/comment-page-1/#comment-81</link>
		<dc:creator>Gyi Tsakalakis</dc:creator>
		<pubDate>Mon, 07 Feb 2011 18:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://jonswope.com/?p=83#comment-81</guid>
		<description>Thanks for the great campfire extension! Any word on updates? I&#039;d like to be able to change notification settings (i.e. display time, permanency, etc.)

Is there are quick way to make notifications remain permanently on desktop until closed?

you can email me direct at gt[at]attorneysync.com</description>
		<content:encoded><![CDATA[<p>Thanks for the great campfire extension! Any word on updates? I&#8217;d like to be able to change notification settings (i.e. display time, permanency, etc.)</p>
<p>Is there are quick way to make notifications remain permanently on desktop until closed?</p>
<p>you can email me direct at gt[at]attorneysync.com</p>
]]></content:encoded>
	</item>
</channel>
</rss>

