User Barry Hess - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T03:19:42Zhttp://stackoverflow.com/feeds/user/14895http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1781996/autoreload-partial-every-few-seconds-ala-twitter-search-style/1784030#17840300Answer by Barry Hess for autoreload partial every few seconds ala twitter search styleBarry Hess2009-11-23T15:53:53Z2009-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#17564831Answer by Barry Hess for former php user trying to learn ruby...very toughBarry Hess2009-11-18T14:42:32Z2009-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#17564442Answer by Barry Hess for Including and excluding helpers in RailsBarry Hess2009-11-18T14:37:35Z2009-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 => :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#17272551Answer by Barry Hess for Prevent image caching in rails on a per tag basisBarry Hess2009-11-13T05:13:53Z2009-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#16810971Answer by Barry Hess for Rails Validation for users email - only want it to validate when a user signs up or updates email address.Barry Hess2009-11-05T15:00:41Z2009-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 => :email_changed?
validates_confirmation_of :email
</code></pre>
http://stackoverflow.com/questions/1510206/using-linktoremote-inside-of-a-controller/1510309#15103091Answer by Barry Hess for Using link_to_remote inside of a controllerBarry Hess2009-10-02T15:36:55Z2009-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&name=content%5Ftag" rel="nofollow">http://www.railsbrain.com/api/rails-2.2.2/doc/index.html?a=M002139&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#14926360Answer by Barry Hess for rails include with optionsBarry Hess2009-09-29T13:40:47Z2009-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#14637211Answer by Barry Hess for Rails - Tracking Referrals to ConversionsBarry Hess2009-09-23T02:48:19Z2009-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#14462492Answer by Barry Hess for Name of class from its objectBarry Hess2009-09-18T18:41:58Z2009-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#6628780Answer by Barry Hess for Any good git tutorials?Barry Hess2009-03-19T16:14:00Z2009-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-tag1RedCloth's odd support of the <del> tagBarry Hess2008-10-23T21:00:00Z2008-10-31T15:36:05Z
<p>I am using RedCloth with Rails 2.1.1. The Textile <code><del></code> tag markup format (i.e. -delete-) was not translating at all. Tried a few choice options.</p>
<pre><code>> x=RedCloth.new('foobar -blah-')
=> "foobar -blah-"
> x.to_html
=> "<p>foobar <del>blah</del></p>" # WORKED!
> x=RedCloth.new('foobar * -blah-')
=> "foobar * -blah-"
> x.to_html
=> "<p>foobar * <del>blah</del></p>" # WORKED!
> x=RedCloth.new("foobar\n* -blah-")
=> "foobar\n* -blah-"
> x.to_html
=> "<p>foobar</p>\n<ul>\n\t<li>-blah-</li>\n</ul>" # 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-blocks1Sharing code in respond_to blocksBarry Hess2008-10-28T20:39:58Z2008-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-paths4Getting renders to recognize custom routing pathsBarry Hess2008-10-23T21:09:11Z2008-10-24T09:04:01Z
<p>So I have a snazzy custom route for login</p>
<pre><code># routes.rb
map.login '/login', :controller => 'sessions', :action => '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 => '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#1711571Comment by Barry Hess on Preload Mouseover Images in RailsBarry Hess2009-11-11T15:34:28Z2009-11-11T15:34:28ZRails 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 "bias against mouseovers." 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#1712930Comment by Barry Hess on URL Helpers in Ruby on RailsBarry Hess2009-11-11T15:30:36Z2009-11-11T15:30:36ZMore 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#1712930Comment by Barry Hess on URL Helpers in Ruby on RailsBarry Hess2009-11-11T04:10:31Z2009-11-11T04:10:31ZLuke beat me to it.
I'll weigh in with a stronger opinion of "don't worry about it." 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#1711571Comment by Barry Hess on Preload Mouseover Images in RailsBarry Hess2009-11-11T03:59:44Z2009-11-11T03:59:44ZSomething to be aware of here is that Rails' <code>image_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#1678975Comment by Barry Hess on Test if a function is called in a Ruby on Rails unit testBarry Hess2009-11-05T19:00:46Z2009-11-05T19:00:46ZGood point - I can see that angle.http://stackoverflow.com/questions/1678087/question-regarding-rjs-and-usage-of-linktoremote/1678832#1678832Comment by Barry Hess on Question regarding RJS and usage of link_to_remoteBarry Hess2009-11-05T15:07:19Z2009-11-05T15:07:19ZActually, 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_to_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#1678975Comment by Barry Hess on Test if a function is called in a Ruby on Rails unit testBarry Hess2009-11-05T15:03:44Z2009-11-05T15:03:44ZI agree with this answer, although I think you want <code>p.expects(:geocode_if_location_info_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#1463721Comment by Barry Hess on Rails - Tracking Referrals to ConversionsBarry Hess2009-09-28T14:19:25Z2009-09-28T14:19:25ZI 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#1451275Comment by Barry Hess on Rails: How to modify tests for a nested resource?Barry Hess2009-09-20T18:29:23Z2009-09-20T18:29:23ZMartijn, 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 "get" 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#1446249Comment by Barry Hess on Name of class from its objectBarry Hess2009-09-20T18:20:08Z2009-09-20T18:20:08ZWhat'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#1432887Comment by Barry Hess on Restful Authentication IssueBarry Hess2009-09-16T14:12:55Z2009-09-16T14:12:55ZI 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-pathsComment by Barry Hess on Getting renders to recognize custom routing pathsBarry Hess2008-10-23T21:45:46Z2008-10-23T21:45:46ZPoor 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.