User Barry Hess - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T03:19:42Z http://stackoverflow.com/feeds/user/14895 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1781996/autoreload-partial-every-few-seconds-ala-twitter-search-style/1784030#1784030 0 Answer by Barry Hess for autoreload partial every few seconds ala twitter search style Barry Hess 2009-11-23T15:53:53Z 2009-11-23T15:53:53Z <p>It may be time to roll up your sleeves and view source. I've heard of folks using <a href="http://juggernaut.rubyforge.org/" rel="nofollow">Juggernaut</a> to keep a live server connection open for such real-time things.</p> http://stackoverflow.com/questions/1755742/former-php-user-trying-to-learn-ruby-very-tough/1756483#1756483 1 Answer by Barry Hess for former php user trying to learn ruby...very tough Barry Hess 2009-11-18T14:42:32Z 2009-11-18T14:42:32Z <p><a href="http://rads.stackoverflow.com/amzn/click/1430223634" rel="nofollow">Beginning Ruby</a> by Peter Cooper is a good option.</p> http://stackoverflow.com/questions/1755928/including-and-excluding-helpers-in-rails/1756444#1756444 2 Answer by Barry Hess for Including and excluding helpers in Rails Barry Hess 2009-11-18T14:37:35Z 2009-11-18T14:37:35Z <p>I think you would need to write a custom method (say, <code>all_helpers</code>) to get symbols (<code>:foo</code>) or module names (<code>FooHelper</code>) for all of your helpers (probably via file system calls to the <code>app/helpers</code> directory) and then allow an exclusion list to be passed to the method. Then call it something like:</p> <pre><code>helper all_helpers(:exclude =&gt; :bar) </code></pre> <p>Take a look at Rails' <code>ActionController::Helpers#all_application_helpers</code> method for details on how to pull helper names from the filesystem.</p> http://stackoverflow.com/questions/1726557/prevent-image-caching-in-rails-on-a-per-tag-basis/1727255#1727255 1 Answer by Barry Hess for Prevent image caching in rails on a per tag basis Barry Hess 2009-11-13T05:13:53Z 2009-11-13T05:13:53Z <p>One option I can think of to do this would be to write a little helper that would append a "?YYYYMMDDHH" to the end of Gravatar URL's. You could generate the URL's to include year, month, day and hour. This way the browser caching should only be stale for an hour maximum.</p> <p>This will increase perceived load time for your users as images would be browser cached less frequently. You could adjust any number of ways: YYYYMMDD, YYYYMMDDHHm, etc. You'll have to weigh the importance of having up-to-the-minute Gravatar images versus page rendering speeds.</p> http://stackoverflow.com/questions/1673812/rails-validation-for-users-email-only-want-it-to-validate-when-a-user-signs-up/1681097#1681097 1 Answer by Barry Hess for Rails Validation for users email - only want it to validate when a user signs up or updates email address. Barry Hess 2009-11-05T15:00:41Z 2009-11-05T15:00:41Z <p>I think EmFi is on to something. But I don't think the <code>validates_presence_of :email</code> should be holding you up. The <code>email</code> should always be present - if it is left blank in the form the parameter will not mess with your save of the user. If it is entered in the form, even for update, it should have an <code>email_confirmation</code> along for the ride.</p> <p>Give this a try:</p> <pre><code>validates_presence_of :email validates_presence_of :email_confirmation, :if =&gt; :email_changed? validates_confirmation_of :email </code></pre> http://stackoverflow.com/questions/1510206/using-linktoremote-inside-of-a-controller/1510309#1510309 1 Answer by Barry Hess for Using link_to_remote inside of a controller Barry Hess 2009-10-02T15:36:55Z 2009-10-02T15:36:55Z <p>You'll need to discover all of the helpers that need to be included to make it work. For instance, <code>content_tag</code> is part of <code>ActionView::Helpers::TagHelper</code>.</p> <p><a href="http://www.railsbrain.com/api/rails-2.2.2/doc/index.html?a=M002139&amp;name=content%5Ftag" rel="nofollow">http://www.railsbrain.com/api/rails-2.2.2/doc/index.html?a=M002139&amp;name=content_tag</a></p> <p>It may be time to consider an alternative design.</p> http://stackoverflow.com/questions/1491487/rails-include-with-options/1492636#1492636 0 Answer by Barry Hess for rails include with options Barry Hess 2009-09-29T13:40:47Z 2009-09-29T13:40:47Z <p>I'm not going to investigate the detailed query, but I'm thinking <code>find_by_sql</code> is in order for this particular case.</p> http://stackoverflow.com/questions/1463017/rails-tracking-referrals-to-conversions/1463721#1463721 1 Answer by Barry Hess for Rails - Tracking Referrals to Conversions Barry Hess 2009-09-23T02:48:19Z 2009-09-23T02:48:19Z <p>Indeed, I would suggest storing the referrer in the user record. Then you can write some code to sensibly draw out additional data from the URL. For instance, you could parse Google URL's to determine the keywords used to discover your site. And your code could detect things like referrals from ad runs, specific SEO campaigns you're running, or partner deals you have going.</p> <p>It would be beneficial to spend some time building an admin-only page to visualize these conversions to help you better learn what is working and what isn't. And when things are going well, such a page is encouraging for the whole team!</p> http://stackoverflow.com/questions/1445944/name-of-class-from-its-object/1446249#1446249 2 Answer by Barry Hess for Name of class from its object Barry Hess 2009-09-18T18:41:58Z 2009-09-18T18:41:58Z <p>If you want to test for an instance of a specific class, I'd go with something like:</p> <pre><code>@list.is_a?(List) </code></pre> http://stackoverflow.com/questions/183918/any-good-git-tutorials/662878#662878 0 Answer by Barry Hess for Any good git tutorials? Barry Hess 2009-03-19T16:14:00Z 2009-03-19T16:28:48Z <p>This is my favorite git tutorial site. It's spectacular.</p> <p><a href="http://gitready.com/" rel="nofollow">Git Ready</a></p> http://stackoverflow.com/questions/231512/redcloths-odd-support-of-the-del-tag 1 RedCloth's odd support of the <del> tag Barry Hess 2008-10-23T21:00:00Z 2008-10-31T15:36:05Z <p>I am using RedCloth with Rails 2.1.1. The Textile <code>&lt;del&gt;</code> tag markup format (i.e. -delete-) was not translating at all. Tried a few choice options.</p> <pre><code>&gt; x=RedCloth.new('foobar -blah-') =&gt; "foobar -blah-" &gt; x.to_html =&gt; "&lt;p&gt;foobar &lt;del&gt;blah&lt;/del&gt;&lt;/p&gt;" # WORKED! &gt; x=RedCloth.new('foobar * -blah-') =&gt; "foobar * -blah-" &gt; x.to_html =&gt; "&lt;p&gt;foobar * &lt;del&gt;blah&lt;/del&gt;&lt;/p&gt;" # WORKED! &gt; x=RedCloth.new("foobar\n* -blah-") =&gt; "foobar\n* -blah-" &gt; x.to_html =&gt; "&lt;p&gt;foobar&lt;/p&gt;\n&lt;ul&gt;\n\t&lt;li&gt;-blah-&lt;/li&gt;\n&lt;/ul&gt;" # DID NOT WORK! </code></pre> <p>It appears to me that newlines are the culprit in throwing RedCloth up-in-arms. Any solutions to getting RedCloth to properly recognize '-delete-'? I have tried RedCloth 4.0.1, 4.0.3, and 4.0.4.</p> http://stackoverflow.com/questions/244779/sharing-code-in-respondto-blocks 1 Sharing code in respond_to blocks Barry Hess 2008-10-28T20:39:58Z 2008-10-29T12:08:48Z <p>I have the following <code>before_filter</code>:</p> <pre><code> def find_current_membership respond_to do |wants| wants.html { @current_membership = @group.memberships.for(@current_user) } wants.rss {} wants.js { @current_membership = @group.memberships.for(@current_user) } end end </code></pre> <p>I would like to share the code for the HTML and JS blocks. Is there a better way than just throwing the code into a method? I was hoping this would work:</p> <pre><code> def find_current_membership respond_to do |wants| wants.rss {} wants.all { @current_membership = @group.memberships.for(@current_user) } end end </code></pre> <p>But alas, it did not.</p> http://stackoverflow.com/questions/231538/getting-renders-to-recognize-custom-routing-paths 4 Getting renders to recognize custom routing paths Barry Hess 2008-10-23T21:09:11Z 2008-10-24T09:04:01Z <p>So I have a snazzy custom route for login</p> <pre><code># routes.rb map.login '/login', :controller =&gt; 'sessions', :action =&gt; 'new' </code></pre> <p>Visit www.asite.com/login and you're there. As is custom with failed login, however, we'll do the following in our action. Note what happens on failed login.</p> <pre><code> # sessions_controller.rb def create self.current_user = User.authenticate(params[:email], params[:password]) if logged_in? # some work and redirect the user else flash.now[:warning] = "The email and/or password you entered is invalid." render :action =&gt; 'new' end end </code></pre> <p>This is very typical. Simply render the new action and prompt for login again. Unfortunately you also get with it an ugly URL: www.asite.com/session. Ick! Is it possible to get rendering to respect the original URL?</p> http://stackoverflow.com/questions/1711450/preload-mouseover-images-in-rails/1711571#1711571 Comment by Barry Hess on Preload Mouseover Images in Rails Barry Hess 2009-11-11T15:34:28Z 2009-11-11T15:34:28Z Rails does the same timestamp appending to the mouseover images, I believe. The only negative here is that it hasn't abstracted preloading images, which I don't think can really be considered a &quot;bias against mouseovers.&quot; Using the CSS Sprite technique should be equally achievable in Rails as in any web framework. http://stackoverflow.com/questions/1712566/url-helpers-in-ruby-on-rails/1712930#1712930 Comment by Barry Hess on URL Helpers in Ruby on Rails Barry Hess 2009-11-11T15:30:36Z 2009-11-11T15:30:36Z More to the point, I talked with some colleagues here and we're pretty sure there has been heavy optimization of those calls (routing optimization, really) since the article was written. http://stackoverflow.com/questions/1712566/url-helpers-in-ruby-on-rails/1712930#1712930 Comment by Barry Hess on URL Helpers in Ruby on Rails Barry Hess 2009-11-11T04:10:31Z 2009-11-11T04:10:31Z Luke beat me to it. I'll weigh in with a stronger opinion of &quot;don't worry about it.&quot; Based on the tone of the question, I do not believe you're in a full-on optimization project phase. So, no, I don't think there are any performance <i>concerns</i> for you at this time. Reap the benefit of development speed while you can. The beauty of OSS is that by the time you need to start optimizing, the project may have already vastly improved the performance of a given method. In short, this will certainly not be your first performance concern, nor your heaviest hitting performance adjustment. http://stackoverflow.com/questions/1711450/preload-mouseover-images-in-rails/1711571#1711571 Comment by Barry Hess on Preload Mouseover Images in Rails Barry Hess 2009-11-11T03:59:44Z 2009-11-11T03:59:44Z Something to be aware of here is that Rails' <code>image&#95;tag</code> helper by default will append timestamps to asset paths to allow for instant cache invalidation upon a file change. It's really hard to live without this once you are used to it, and I'd recommend avoiding hacking something new together for this. I suggest Andy Atkinson's answer for that reason. http://stackoverflow.com/questions/1676624/test-if-a-function-is-called-in-a-ruby-on-rails-unit-test/1678975#1678975 Comment by Barry Hess on Test if a function is called in a Ruby on Rails unit test Barry Hess 2009-11-05T19:00:46Z 2009-11-05T19:00:46Z Good point - I can see that angle. http://stackoverflow.com/questions/1678087/question-regarding-rjs-and-usage-of-linktoremote/1678832#1678832 Comment by Barry Hess on Question regarding RJS and usage of link_to_remote Barry Hess 2009-11-05T15:07:19Z 2009-11-05T15:07:19Z Actually, would <code>page.replace</code> work better is it would replace the entire element, rather than just the inner HTML. Also it might be nice to create a helper method for this particular <code>link&#95;to&#95;remote</code> so all the URL and HTML parameters aren't repeated. http://stackoverflow.com/questions/1676624/test-if-a-function-is-called-in-a-ruby-on-rails-unit-test/1678975#1678975 Comment by Barry Hess on Test if a function is called in a Ruby on Rails unit test Barry Hess 2009-11-05T15:03:44Z 2009-11-05T15:03:44Z I agree with this answer, although I think you want <code>p.expects(:geocode&#95;if&#95;location&#95;info&#95;changed).times(1)</code>. I'm OK with using mocha here. A before filter seems pretty close to a collaborator in my opinion. http://stackoverflow.com/questions/1463017/rails-tracking-referrals-to-conversions/1463721#1463721 Comment by Barry Hess on Rails - Tracking Referrals to Conversions Barry Hess 2009-09-28T14:19:25Z 2009-09-28T14:19:25Z I don't think there should be any problem with that idea. I say go for it! http://stackoverflow.com/questions/1451135/rails-how-to-modify-tests-for-a-nested-resource/1451275#1451275 Comment by Barry Hess on Rails: How to modify tests for a nested resource? Barry Hess 2009-09-20T18:29:23Z 2009-09-20T18:29:23Z Martijn, that's what you're gonna have to do. Your routing must know the customer to work. I suppose you could write a test helper to replace the &quot;get&quot; call that autofills the customer_id part of the hash, but that seems like a bad idea unless you're writing many, many tests against the DomainsController. http://stackoverflow.com/questions/1445944/name-of-class-from-its-object/1446249#1446249 Comment by Barry Hess on Name of class from its object Barry Hess 2009-09-20T18:20:08Z 2009-09-20T18:20:08Z What's wrong with that? If you have a List, it returns true. If you have a subclass of a List, it also returns true. Seems proper in either case. http://stackoverflow.com/questions/1432618/restful-authentication-issue/1432887#1432887 Comment by Barry Hess on Restful Authentication Issue Barry Hess 2009-09-16T14:12:55Z 2009-09-16T14:12:55Z I agree - and the mailer configuration also sounds like a really likely candidate for problems. http://stackoverflow.com/questions/231538/getting-renders-to-recognize-custom-routing-paths Comment by Barry Hess on Getting renders to recognize custom routing paths Barry Hess 2008-10-23T21:45:46Z 2008-10-23T21:45:46Z Poor example. Consider situations where you want the text the user has already filled into the form to be retained. Render does this (since the object is partially built). Redirect loses the state.