User Dave Nolan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T09:52:46Zhttp://stackoverflow.com/feeds/user/9474http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/123494/whats-your-favourite-irb-trick/126893#1268935Answer by Dave Nolan for What's Your Favourite IRB Trick?Dave Nolan2008-09-24T12:42:13Z2009-07-16T18:19:33Z<p>Returning nil after a command like this. Example from Rails:</p>
<pre><code>people = Person.all
#=> screenfuls of people and their attributes as the command returns an array of people
</code></pre>
<p>Avoid screenfuls like this:</p>
<pre><code>people = Person.all; nil #=> nil
</code></pre>
<p>Simple.</p>
http://stackoverflow.com/questions/161315/ruby-ruby-on-rails-memory-leak-detection/161886#1618866Answer by Dave Nolan for ruby/ruby on rails memory leak detectionDave Nolan2008-10-02T11:53:53Z2009-07-12T14:30:25Z<p>Some tips to find memory leaks in Rails:</p>
<ul>
<li>use the <a href="http://www.rubyinside.com/bleakhouse-tool-to-find-memory-leaks-in-your-rails-applications-470.html" rel="nofollow">Bleak House</a> plugin</li>
<li>implement <a href="http://scoutapp.com" rel="nofollow">Scout monitoring</a> specifically the memory usage profiler</li>
<li>implement <a href="http://fiveruns.com" rel="nofollow">FiveRuns monitoring</a></li>
<li>try another <a href="http://github.com/binarylogic/memorylogic/tree/master" rel="nofollow">simple memory usage logger</a></li>
</ul>
<p>The first is a graphical exploration of memory usage by objects in the ObjectSpace.</p>
<p>The last two will help you identify specific usage patterns that are inflating memory usage, and you can work from there.</p>
<p>As for specific coding-patterns, from experience you have to watch anything that's dealing with file io, image processing, working with massive strings and the like.</p>
<p>I would check whether you are using the most appropriate XML library - ReXML is known to be slow and believed to be leaky (I have no proof of that!). Also check whether you can <a href="http://unintelligible.org/blog/2007/08/16/one-line-ruby-memoization/" rel="nofollow">memoize</a> expensive operations.</p>
http://stackoverflow.com/questions/443152/whats-the-best-strategy-for-get-setting-metadata-on-ruby-methods-at-runtime1What's the best strategy for get/setting metadata on Ruby methods at runtime?Dave Nolan2009-01-14T14:33:21Z2009-04-29T18:03:47Z
<p>I have a class with some methods. It's supersekret but I've reproduced what I can here.</p>
<pre><code>Class RayGun
# flashes red light
# requires confirmation
# makes "zowowowowowow" sound
def stun!
# ...
end
# flashes blue light
# does not require confirmation
# makes "trrrtrtrtrrtrtrtrtrtrtr" sound
def freeze!
# ...
end
# doesn't flash any lights
# does not require confirmation
# makes Windows startup sound
def killoblast!
# ...
end
end
</code></pre>
<p>I want to be able to, at runtime, interrogate the class about one of the methods and receive a hash or struct like so:</p>
<pre><code> {:lights => 'red', :confirmation => false, :sound => 'windows'}
</code></pre>
<p>What's the best way of doing this? Obviously you could have separate YAML file alongside and set up a convention to relate the two, but ideally I want code and metadata in one place.</p>
<p>The most promising idea I can come up with is something like this:</p>
<pre><code>class RayGun
cattr_accessor :metadata
def self.register_method(hsh)
define_method(hsh.name, hsh.block)
metadata[hsh[:name]] = hsh
end
register_method({
:name => 'stun!',
:lights => 'red',
:confirmation => 'true',
:sound => 'zowowo',
:block => Proc.new do
# code goes here
})
# etc.
end
</code></pre>
<p>Anyone got some better ideas? Am I barking up a very wrong tree?</p>
http://stackoverflow.com/questions/776462/where-is-it-legal-to-use-ruby-splat-operator3Where is it legal to use ruby splat operator?Dave Nolan2009-04-22T09:58:23Z2009-04-24T12:32:38Z
<p>Splats are cool. They're not just for exploding arrays, although that is fun. They can also cast to Array and flatten arrays (See <a href="http://github.com/mischa/splat/tree/master" rel="nofollow">http://github.com/mischa/splat/tree/master</a> for an exhaustive list of what they do.)</p>
<p>It looks like one cannot perform additional operations on the splat, but in 1.8.6/1.9 the following code throws "unexpected tSTAR":</p>
<p><code>foo = bar || *zap #=> unexpected tSTAR</code></p>
<p>Whereas this works:</p>
<p><code>foo = *zap || bar #=> works, but of limited value</code></p>
<p>Where can the splat appear in an expression?</p>
http://stackoverflow.com/questions/443152/whats-the-best-strategy-for-get-setting-metadata-on-ruby-methods-at-runtime/686096#6860961Answer by Dave Nolan for What's the best strategy for get/setting metadata on Ruby methods at runtime?Dave Nolan2009-03-26T14:43:36Z2009-03-26T14:43:36Z<p>I found another strategy poking around <a href="http://github.com/wycats/thor/tree" rel="nofollow">http://github.com/wycats/thor/tree</a>. Thor lets you write stuff like this:</p>
<pre><code>Class RayGun < Thor
desc "Flashes red light and makes zowowowowow sound"
method_options :confirmation => :required
def stun!
# ...
end
end
</code></pre>
<p>It manages this by using the (undocumented) hook <code>Module#method_added</code>. It works like this:</p>
<ol>
<li><p>Call to <code>Thor#desc</code> and
<code>Thor#method_options</code> set instance
variables <code>@desc</code>,
<code>@method_options</code>.</p></li>
<li><p>Defining method <code>stun!</code> calls
<code>Thor#method_added(meth)</code> </p></li>
<li><p><code>Thor#method_added</code> registers
<code>Task.new(meth.to_s, @desc,
@method_options)</code> (roughly speaking)
and unsets <code>@desc</code>,
<code>@method_options</code>.</p></li>
<li><p>It's now ready for the next method</p></li>
</ol>
<p>Neat! So neat that I am going to accept my own answer :)</p>
http://stackoverflow.com/questions/126332/what-is-the-best-way-in-rails-to-determine-if-two-or-more-given-urls-as-string/126816#1268165Answer by Dave Nolan for What is the best way in Rails to determine if two (or more) given URLs (as strings or hash options) are equal?Dave Nolan2008-09-24T12:25:41Z2009-03-18T10:07:59Z<p>Here's the method (bung it in /lib and require it in environment.rb):</p>
<pre><code>def same_page?(a, b, params_to_exclude = {})
if a.respond_to?(:except) && b.respond_to?(:except)
url_for(a.except(params_to_exclude)) == url_for(b.except(params_to_exclude))
else
url_for(a) == url_for(b)
end
end
</code></pre>
<p><strong>If you are on Rails pre-2.0.1</strong>, you also need to add the <code>except</code> helper method to Hash:</p>
<pre><code>class Hash
# Usage { :a => 1, :b => 2, :c => 3}.except(:a) -> { :b => 2, :c => 3}
def except(*keys)
self.reject { |k,v|
keys.include? k.to_sym
}
end
end
</code></pre>
<p>Later version of Rails (well, ActiveSupport) include <code>except</code> already (credit: <a href="http://stackoverflow.com/users/77859/brian-guthrie">Brian Guthrie</a>)</p>
http://stackoverflow.com/questions/559092/how-can-mocking-external-services-improve-unit-tests2How can mocking external services improve unit tests?Dave Nolan2009-02-17T22:51:32Z2009-02-17T23:20:03Z
<p>I'm connecting to a simple, if idiosyncractic, external service.</p>
<p>I believe that my unit tests should not depend on the availability or implementation of that external service, so I intend to mock it out.</p>
<p>I need the mock to accept and return realistic messages and responses - otherwise my tests won't represent real states of affairs. For example, it has to throw the right kind of errors - and there are at least 7 different ways it can fail (between you and me it's not a very well designed external service). Therefore, at a bare minimum I have to have a hash of message/response pairs.</p>
<p>So instead of reducing contingency, mocking has reintroduced it somewhere else. In fact, as the saying goes, now I've got two problems: I've got to be sure that what's in my hash is a fair representation of how the external service behaves. But surely the canonical source of what response object X gives to message <em>m</em> is X itself. Anything else is risky and messy.</p>
<p>Have I taken a wrong turn? How can I eliminate this apparent circularity?</p>
<p><strong>EDIT</strong> I've clarified what I think the problem is in the light of Justice's helpful comments.</p>
http://stackoverflow.com/questions/113780/javascript-curry-what-are-the-practical-applications14Javascript curry - what are the practical applications?Dave Nolan2008-09-22T08:22:06Z2009-01-09T12:03:15Z
<p>I don't think I've grokked currying yet. I understand what it does, and how to do it. I just can't think of a situation I would use it.</p>
<p>Where are you using currying in javascript (or where are the main libraries using it)? DOM manipulation or general application development examples welcome.</p>
<p>EDIT: <a href="http://stackoverflow.com/questions/113780/javascript-curry-what-are-the-practical-applications#113799">One of the answers</a> mentions animation. Functions like "slideUp", "fadeIn" take an element as an arguments and are normally a curried function returning the high order function with the default "animation function" built-in. Why is that better than just applying the higher-up function with some defaults?</p>
<p>Oh and are there any drawbacks to using it?</p>
<p>Cheers.</p>
<p>EDIT: As requested here are some good resources on javascript currying:</p>
<ul>
<li><a href="http://www.dustindiaz.com/javascript-curry/" rel="nofollow">http://www.dustindiaz.com/javascript-curry/</a></li>
<li>Crockford, Douglas (2008) <em>Javascript: The Good Parts</em></li>
<li><a href="http://www.svendtofte.com/code/curried_javascript/" rel="nofollow">http://www.svendtofte.com/code/curried_javascript/</a>
(Takes a detour into ML so skip the whole section from "A crash course in ML" and start again at "How to write curried JavaScript")</li>
<li><a href="http://blog.morrisjohns.com/javascript_closures_for_dummies" rel="nofollow">http://blog.morrisjohns.com/javascript_closures_for_dummies</a></li>
<li><a href="http://stackoverflow.com/questions/111102/how-does-a-javascript-closure-work">http://stackoverflow.com/questions/111102/how-does-a-javascript-closure-work</a></li>
<li><strong><a href="http://ejohn.org/blog/partial-functions-in-javascript/" rel="nofollow">http://ejohn.org/blog/partial-functions-in-javascript</a> (Mr. Resig on the money as per usual)</strong></li>
</ul>
<p>I'll add more as they crop up in the comments.</p>
http://stackoverflow.com/questions/143430/whats-the-best-way-of-productizing-a-rails-application-for-multiple-installation4What's the best way of productizing a Rails application for multiple installations?Dave Nolan2008-09-27T11:11:21Z2008-12-08T12:44:08Z
<p><strong>UPDATE:</strong> <a href="http://weblog.rubyonrails.org/2008/11/28/this-week-in-edge-rails" rel="nofollow">It looks like DHH and the Rails Core team finally have a productization itch to scratch as it were</a>. <a href="http://github.com/rails/rails/commit/63d8f56774dcb1ea601928c3eb6c119d359fae10#comments" rel="nofollow">I'll keep this question up-to-date as and when I get to grips with the new options</a>. It's all in a state of flux at the moment.</p>
<p>I'd like to install a Rails app, <em>My$uperWeb$olution<sup>TM</sup></em>, on multiple servers for multiple clients.</p>
<p>At the very least, each client is going to have different API keys, urls, logos etc. That's fairly easy.</p>
<p>They may also want custom layouts and views, and in some cases, custom functionality (models and controllers).</p>
<p>What's the best way of acheiving this but keeping the ability to push updates and bug-fixes to all installations as simple as possible?</p>
<p>As I see it the options are:</p>
<ul>
<li>YML all the way</li>
<li><a href="http://rails-engines.org/" rel="nofollow">Engines</a></li>
<li><a href="http://inquirylabs.com/productize/" rel="nofollow">Productize</a> [looks expired]</li>
<li><a href="http://pivots.pivotallabs.com/users/brian/blog/articles/459-build-your-own-rails-plugin-platform-with-desert" rel="nofollow">Desert</a></li>
<li>an SCM-based solution (branch and merge)</li>
<li><a href="http://github.com/rails/rails/commit/63d8f56774dcb1ea601928c3eb6c119d359fae10#comments" rel="nofollow">New Engines-integrated-into-Rails</a></li>
</ul>
<p>What's the best way and why?</p>
http://stackoverflow.com/questions/230335/why-do-i-need-to-work-harder-to-make-my-rails-application-fit-into-a-restful-arch/230695#2306959Answer by Dave Nolan for Why do I need to work harder to make my Rails application fit into a RESTful architecture?Dave Nolan2008-10-23T17:44:42Z2008-10-23T17:44:42Z<p>I would treat search as a special case of index. Both actions return a collection of resources. The request parameters should specify things like page, limit, sort order, and search query.</p>
<p>For example:</p>
<pre><code>/resources/index # normal index
/resources/index?query=foo # search for 'foo'
</code></pre>
<p>And in resources_controller:</p>
<pre><code>before_filter :do_some_preprocessing_on_parameters
def index
@resources = Resource.find_by_param(@preprocessed_params)
end
</code></pre>
<p>As for <code>index_full</code> and <code>search_by_name</code>, you might look at splitting your current controller into two. There's a smell about what you've descibed...</p>
<p>Having said that, you're absolutely right that there's no point in forcing your app to user restful routes when it doesn't deliver anything over <code>/:controller/:action/:id</code>. To make the decision, look how frequently you're using the restful resource route helpers in forms and links. If you're not using them, I wouldn't bother with it.</p>
http://stackoverflow.com/questions/182571/the-dangers-of-using-extjs-on-a-big-project-with-ror/195484#1954842Answer by Dave Nolan for The dangers of using ExtJS on a big project with RoR?Dave Nolan2008-10-12T13:26:07Z2008-10-12T13:26:07Z<p>I've successfully deployed a large RoR/ExtJS app of the kind you describe ("single-page" client-side AJAX driven). Ext_scaffold is pretty much a red-herring.</p>
<p>It's not too taxing to get RoR and ExtJS working smoothly together. The fundamental choice is whether to extend ExtJS to "speak Rails", patch RoR to "speak ExtJS", or meet in the middle. It's going to depend where your team's skills are.</p>
<p>I adopted the meet-in-the-middle strategy, which includes:</p>
<ul>
<li>Extend <code>Ext.data.Store</code> and <code>Ext.data.Record</code> to be aware of Rails routing conventions</li>
<li>Hack <code>Ext.grid.EditorPanel</code> and <code>Ext.form.BasicForm</code> to play well with ActiveRecord associations</li>
<li>Write some modules to extend <code>ActiveRecord::Base</code> and <code>ApplicationController</code> to simply commits from <code>Ext.grid.EditorPanel</code> and <code>Ext.form.BasicForm</code></li>
</ul>
<p>That's pretty much it.</p>
<p>Having said that, there are drawbacks to ExtJS.</p>
<ul>
<li>You're going to have to get your hands dirty in the internals. Don't be beguiled by the demos.</li>
<li>The community documentation is poor and PHP-centric.</li>
<li>Coming from the Github/Lighthouse-centred RoR world, using VBulletin is like waking up in 1998. I mean, there's no public bugtracker just a forum post that's updated (WTF?).</li>
<li>The code is a bit over-engineered.</li>
<li>The team have lost Open Source credibility so they've lost Open Source oxygen.</li>
<li>The team appear to be focused integration with GWT (can anyone say "enterpri$ey"?).</li>
</ul>
http://stackoverflow.com/questions/181060/best-way-to-add-full-web-search-to-my-site/181858#1818582Answer by Dave Nolan for Best way to add full web search to my site?Dave Nolan2008-10-08T08:43:01Z2008-10-08T08:43:01Z<p>I recommend <a href="http://github.com/frabcus/acts_as_xapian/wikis" rel="nofollow">acts_as_xapian</a>. It's very easy to implement, it's fast enough, and it's the got the features you'll normally need.</p>
http://stackoverflow.com/questions/145480/why-stackoverflow-binds-user-actions-dynamically-with-javascript/145527#1455278Answer by Dave Nolan for Why Stackoverflow binds user actions dynamically with javascript?Dave Nolan2008-09-28T09:07:58Z2008-10-02T15:44:07Z<ul>
<li>You don't have to type the same string over and over again in the HTML (which if nothing else would increase the number of typos to debug)</li>
<li>You can hand over the HTML/CSS to a designer who need not have any javascript skills</li>
<li>You have programmatic control over what callbacks are called and when</li>
<li>It's more elegant because it fits the conceptual separation between layout and behaviour</li>
<li>It's easier to modify and refactor</li>
</ul>
<p>On the last point, imagine if you wanted to add a "show comments" icon somewhere else in the template. It'd be very easy to bind the same callback to the icon.</p>
http://stackoverflow.com/questions/48320/best-ruby-on-rails-social-networking-framework/161963#1619637Answer by Dave Nolan for Best Ruby on Rails social networking frameworkDave Nolan2008-10-02T12:14:17Z2008-10-02T13:52:52Z<p>It depends what your priorities are.</p>
<p>If you really want to learn RoR, <strong>do it all from scratch</strong>. Seriously. Roll your own. It's the best way to learn, far better than hacking through someone else's code. If you do that, sometimes you'll be learning Rails, but sometimes you'll just be learning that specific social network framework. And <strong>you won't know which is which...</strong></p>
<p>The type of site you're suggesting sounds perfect for a Rails project. If you get stuck, <strong>then</strong> go browse the repositories of these frameworks. Who cares if you're reinventing the wheel? It's your site, your vision, your rules.</p>
<p>If you just want a site up and running, then I would pick Insoshi or LovdbyLess simply because they're out of the box apps so you'll have to do less to do get running. I suggest trying to install them both, and introducing yourself in the Google Groups. That'll give you a good indication of wether you're going to get along.</p>
http://stackoverflow.com/questions/107173/building-ruby-on-windows-xp/158077#1580771Answer by Dave Nolan for Building Ruby on Windows XPDave Nolan2008-10-01T15:02:03Z2008-10-01T15:02:03Z<p><a href="http://blog.mmediasys.com/" rel="nofollow">Luis Lavena</a> maintains the Ruby One-Click installer binaries. His blogs and postings on Ruby Forum are definitely the place to start.</p>
http://stackoverflow.com/questions/156783/how-to-create-nice-flashy-documentation-e-g-user-guide/156869#1568692Answer by Dave Nolan for How to create nice flashy documentation e.g. user guide?Dave Nolan2008-10-01T09:32:01Z2008-10-01T09:32:01Z<p>For orientating users to a website try <a href="http://trailfire.com/" rel="nofollow">TrailFire</a>. This allows you to overlay annotatations onto webpages and link them in a linear narrative. We liked the idea so much we rolled our own :)</p>
http://stackoverflow.com/questions/151731/ext-form-formpanel-and-form-submission/152134#1521342Answer by Dave Nolan for Ext.form.FormPanel and form submissionDave Nolan2008-09-30T07:48:38Z2008-09-30T07:48:38Z<p>The best plan would be to create a custom action by extending <code>Ext.form.Action</code>.</p>
<p>You can then <code>eval</code> the <code>response</code> object or the <code>result</code> object in the <code>success</code> callback of your custom action.</p>
<p>Your custom action can be called from <code>Ext.form.BasicForm</code> in the usual way.</p>
http://stackoverflow.com/questions/149776/using-respondto-for-graceful-degradation-with-ajax-in-ror-2-x/149842#1498422Answer by Dave Nolan for Using respond_to for graceful degradation with ajax in RoR 2.xDave Nolan2008-09-29T17:47:20Z2008-09-29T17:54:22Z<p>Well you can refactor like this:</p>
<pre><code>def function
basic_stuff # executed regardless of the mime types accepted
respond_to do |format|
format.html do
user_redirect
end
end
# will fall back rendering the default view - which you should ensure will be js
end
</code></pre>
<p><code>request.xhr?</code> looks at the request‘s <code>X-Requested-With</code> header (to see whether it contains "XMLHttpRequest"). <code>respond_to</code> looks at the mime types accepted.</p>
<p>You can use either to implement some sort of graceful degredation.</p>
<p><strong>BUT</strong> You won't be able to use <code>xhr?</code> for graceful degredation unless your ajax calls are setting that header (Prototype does this automatically).</p>
<p>Moreover, <code>respond_to</code> gives more flexibility i.e. sending xml, json, js, whatever it might be from the same block.</p>
<p>So I'd recommend <code>respond_to</code> here.</p>
http://stackoverflow.com/questions/148838/how-do-i-configure-apache-2-2-for-ruby-on-rails-in-windows/148947#1489474Answer by Dave Nolan for How do I configure Apache 2.2 for Ruby on Rails in Windows?Dave Nolan2008-09-29T14:35:54Z2008-09-29T14:53:32Z<p><strong>EDIT:</strong> At least until there's a Phusion Passenger for Win, Apache + Mongrel is the way to go. You can use Apache + FastCGI without Mongrel, but under real loads you will get (more) zombie processes and (more) memory leaks.</p>
<p>You could also look at proxying to <a href="http://code.macournoyer.com/thin/" rel="nofollow">Thin</a> in the same way as detailed below. However, I've had some instabilities with Thin on Win, even though it's appreciably quicker. AB (Apache Benchmark) is your friend here!</p>
<p>Configuring Apache + Mongrel on Windows is not significantly different from *nix.</p>
<p>Essentially, you need to proxy requests coming into Apache to Mongrel. What this boils down to is something like this:</p>
<pre><code>LoadModule proxy_module modules/mod_proxy.so
LoadModule proxy_http_module modules/mod_proxy_http.so
<VirtualHost localhost:80>
ServerName www.myapp.comm
DocumentRoot "C:/web/myapp/public"
ProxyPass / http://www.myapp.com:3000/
ProxyPassReverse / http://www.myapp.com:3000/
ProxyPreserveHost On
</VirtualHost>
</code></pre>
<p>Stick this in your <code>httpd.conf</code> (or <code>httpd-vhost.conf</code> if you're including it).</p>
<p>It assumes you're going to run mongrel on port 3000, your Rails root is in <code>C:\web\myapp</code>, and you'll access the app at www.myapp.com.</p>
<p>To run the rails app in production mode:</p>
<pre><code>mongrel_rails start -p 3000 -e production
</code></pre>
<p>And away you go (actually mongrel defaults to port 3000 so you could skip <code>-p 3000</code> if you want).</p>
<p>The main difference is that you cannot daemonize mongrel on Windows (i.e. make it run in the background). Instead you can install it as a service using the <code>mongrel_service</code> gem.</p>
<p>Also, running a cluster is more complicated and you won't be able to use Capistrano. Let me know if you want more info.</p>
http://stackoverflow.com/questions/148752/silverlight-and-rails/148884#1488841Answer by Dave Nolan for Silverlight and RailsDave Nolan2008-09-29T14:23:12Z2008-09-29T14:23:12Z<p>A choice between Flex/Silverlight should depend on your skills and what you want the RIA to do.</p>
<p>There's a fair comparison here: <a href="http://extremeblue.wordpress.com/2008/04/28/flex-vs-silverlight-my-views/" rel="nofollow">http://extremeblue.wordpress.com/2008/04/28/flex-vs-silverlight-my-views/</a></p>
<p>But I think you should also look at "pure" javascript solutions like <a href="http://extjs.com" rel="nofollow">ExtJS</a> or <a href="http://jquery.com" rel="nofollow">JQuery</a>. We've had good experiences with both those libraries + RoR. JS is hot right now. Javascript engines are getting seriously quick and it's a lovely language (in some ways). Offline persistance can be implemented through Google Gears or Adobe Air.</p>
http://stackoverflow.com/questions/144675/how-to-capture-an-anchor-value-from-url-in-ruby-on-rails/145539#1455391Answer by Dave Nolan for How to capture an anchor value from url in Ruby on Rails?Dave Nolan2008-09-28T09:16:13Z2008-09-28T09:22:07Z<p>I presume you're trying to capture it in JavaScript?</p>
<pre><code>var record_id = window.location.href.hash.split("_")[1];
</code></pre>
<p>In Prototype you could write:</p>
<pre><code>var record_id = window.location.href.hash.split("_").last;
</code></pre>
http://stackoverflow.com/questions/142407/what-is-the-best-way-to-start-unit-and-functional-testing-of-a-ruby-rails-website/143353#1433532Answer by Dave Nolan for What is the best way to start Unit and Functional testing of a Ruby Rails website?Dave Nolan2008-09-27T10:05:15Z2008-09-27T10:05:15Z<p>It sounds like you've already written your application, so I'm not sure you'll get a huge bonus from using <code>RSpec</code> over <code>Test::Unit</code>.</p>
<p>Anyhow regardless of which one you choose, you'll quickly run into another issue: managing fixtures and mocks (i.e. your test "data"). So take a look at <a href="http://www.thoughtbot.com/projects/shoulda" rel="nofollow">Shoulda</a> and <a href="http://giantrobots.thoughtbot.com/2008/6/6/waiting-for-a-factory-girl" rel="nofollow">Factory Girl</a>.</p>
http://stackoverflow.com/questions/132449/problem-with-armailer/133082#1330820Answer by Dave Nolan for Problem with ar_mailerDave Nolan2008-09-25T12:42:02Z2008-09-25T13:52:46Z<p>Check that email_class is set correctly: <a href="http://seattlerb.rubyforge.org/ar_mailer/classes/ActionMailer/ARMailer.html#M000002" rel="nofollow">http://seattlerb.rubyforge.org/ar_mailer/classes/ActionMailer/ARMailer.html#M000002</a></p>
<p>Also don't use instance variables. Try:</p>
<pre><code>class TestMailer < ActionMailer::ARMailer
def send_email
recipients "roberto.druetto@gmail.com"
from "roberto.druetto@gmail.com"
subject "TEST MAIL SUBJECT"
content_type "text/html"
end
end
</code></pre>
<p>From the docs: the body method has special behavior. It takes a hash which generates an instance variable named after each key in the hash containing the value that that key points to.</p>
<p>So something like this added to the method above:</p>
<pre><code>body :user => User.find(1)
</code></pre>
<p>Will allow you to use <code>@user</code> in the template.</p>
http://stackoverflow.com/questions/125730/why-do-i-get-an-error-when-starting-ruby-on-rails-app-with-mongrelrails/126769#1267692Answer by Dave Nolan for Why do I get an error when starting ruby on rails app with mongrel_railsDave Nolan2008-09-24T12:18:48Z2008-09-24T12:18:48Z<p>You already have a process listening on port 3000 (the default port for mongrel).</p>
<p>Try:</p>
<pre><code>mongrel_rails start -p 3001
</code></pre>
<p>and see whether you get a similar error.</p>
<p>If you're trying to install more than one Rails app, you need to assign each mongrel to a separate port and edit you apache conf accordingly.</p>
<p>If you not trying to do that, the most direct way of killing all mongrels is to open windows task manager and kill all the 'ruby' processes.</p>
<p>Note that if you have mongrel installed as a service that starts automatically</p>
<pre><code>mongrel_rails install::service ...
</code></pre>
<p>...the ruby process will regenerate automatically. In that case, you'll have to edit the process properties through the windows services panel. Let me know if you need more info.</p>
http://stackoverflow.com/questions/113780/javascript-curry-what-are-the-practical-applications/114259#1142590Answer by Dave Nolan for Javascript curry - what are the practical applications?Dave Nolan2008-09-22T11:03:26Z2008-09-22T11:03:26Z<p>Thanks for the answers.</p>
<p>So currying and partial application in general are convenience techniques.</p>
<p>If you are frequently "refining" a high-level function by calling it with same configuration, you can curry (or use Resig's partial) the higher-level function to create simple, concise helper methods.</p>
<p>Cheers!</p>
http://stackoverflow.com/questions/776462/where-is-it-legal-to-use-ruby-splat-operator/777578#777578Comment by Dave Nolan on Where is it legal to use ruby splat operator?Dave Nolan2009-04-24T10:37:46Z2009-04-24T10:37:46ZThanks very much Pesto - please can you the stuff about late binding and your example to the top of your answer, then I'll accept it?http://stackoverflow.com/questions/776462/where-is-it-legal-to-use-ruby-splat-operator/777578#777578Comment by Dave Nolan on Where is it legal to use ruby splat operator?Dave Nolan2009-04-22T15:08:11Z2009-04-22T15:08:11ZAlso, is it possible to be more precise? What additional operation is being performed on the splat in bar || *zap versus *zap || bar?http://stackoverflow.com/questions/776462/where-is-it-legal-to-use-ruby-splat-operator/777578#777578Comment by Dave Nolan on Where is it legal to use ruby splat operator?Dave Nolan2009-04-22T15:03:03Z2009-04-22T15:03:03ZThe example is for illustration only. I accomplished everything I want in life many years ago, and now I simply enjoy discovering the depths of Ruby. Don't you? :)http://stackoverflow.com/questions/163497/running-a-ruby-program-as-a-windows-service/164365#164365Comment by Dave Nolan on Running a Ruby Program as a Windows Service?Dave Nolan2009-03-19T15:57:52Z2009-03-19T15:57:52ZYes, which is why I've downvoted it, sorry.http://stackoverflow.com/questions/163497/running-a-ruby-program-as-a-windows-service/164365#164365Comment by Dave Nolan on Running a Ruby Program as a Windows Service?Dave Nolan2009-03-18T11:02:58Z2009-03-18T11:02:58ZThis doesn't work as written - I think it's based on an old version of win32/daemon. Try the example files here instead: <a href="http://rubyforge.org/frs/download.php/30036/win32-service-0.6.1.zip" rel="nofollow">rubyforge.org/frs/download.php/…</a>http://stackoverflow.com/questions/230335/why-do-i-need-to-work-harder-to-make-my-rails-application-fit-into-a-restful-arch/230523#230523Comment by Dave Nolan on Why do I need to work harder to make my Rails application fit into a RESTful architecture?Dave Nolan2009-03-18T10:12:00Z2009-03-18T10:12:00ZSearch, index_full, show_by_name are all parameterized retrieve actions (i.e. the R in CRUD). There's no need to add new routes.http://stackoverflow.com/questions/559092/how-can-mocking-external-services-improve-unit-tests/559177#559177Comment by Dave Nolan on How can mocking external services improve unit tests?Dave Nolan2009-02-17T23:30:19Z2009-02-17T23:30:19ZAh yes, that's it, thanks. Risk and maintenance ain't going away, by simple virtue of the fact it's an <i>external</i> service! But by expressing my expectations of its behaviour, I isolate the uncertainty.http://stackoverflow.com/questions/559092/how-can-mocking-external-services-improve-unit-tests/559105#559105Comment by Dave Nolan on How can mocking external services improve unit tests?Dave Nolan2009-02-17T23:12:32Z2009-02-17T23:12:32ZThanks - I've edited the qu in the light of your clarifying comments. I'm not sure you answered my underlying concern. If you've got a moment, can you take another look? Cheers.http://stackoverflow.com/questions/230335/why-do-i-need-to-work-harder-to-make-my-rails-application-fit-into-a-restful-arch/230695#230695Comment by Dave Nolan on Why do I need to work harder to make my Rails application fit into a RESTful architecture?Dave Nolan2009-01-28T13:20:19Z2009-01-28T13:20:19ZI see it this way: a search finds a bunch of resources and displays them in some kind of order. Index action does the same, but - by default - in a hardcoded way. So actually, index is a special case of search :)http://stackoverflow.com/questions/193838/rails-check-if-yield-area-is-defined-in-contentfor/194243#194243Comment by Dave Nolan on Rails check if yield :area is defined in content_forDave Nolan2009-01-23T22:51:17Z2009-01-23T22:51:17ZHeh well I like your self-reply but... Minor point, <code>instance_variable_defined?(content_var_name)</code> is a bit neater than instead of testing whether it is nil. Second bigger point, the content_for instance variable is deprecated so your solution is not future proofhttp://stackoverflow.com/questions/152240/ruby-on-rails-based-on-mephisto-unable-to-contact-serverComment by Dave Nolan on Ruby on rails (based on Mephisto) - Unable to contact serverDave Nolan2008-09-30T09:01:44Z2008-09-30T09:01:44ZIs there anything in the server logs?http://stackoverflow.com/questions/143430/whats-the-best-way-of-productizing-a-rails-application-for-multiple-installation/151453#151453Comment by Dave Nolan on What's the best way of productizing a Rails application for multiple installations?Dave Nolan2008-09-30T07:39:59Z2008-09-30T07:39:59ZYup I can imagine that hurt plenty :)http://stackoverflow.com/questions/148838/how-do-i-configure-apache-2-2-for-ruby-on-rails-in-windows/148947#148947Comment by Dave Nolan on How do I configure Apache 2.2 for Ruby on Rails in Windows?Dave Nolan2008-09-29T14:49:10Z2008-09-29T14:49:10ZYou could also look at proxying to Thin (<a href="http://code.macournoyer.com/thin/" rel="nofollow">code.macournoyer.com/thin</a>) in the same way. However, I've had some instabilities with Thin on Win, even though it's appreciably quicker. AB (apache benchmark) is your friend here!http://stackoverflow.com/questions/148838/how-do-i-configure-apache-2-2-for-ruby-on-rails-in-windows/148947#148947Comment by Dave Nolan on How do I configure Apache 2.2 for Ruby on Rails in Windows?Dave Nolan2008-09-29T14:47:02Z2008-09-29T14:47:02ZI think it's absoutely the way - at least until there's a Phusion Passenger for Win. You can use Apache + FastCGI without Mongrel, but under real loads you will get (more) zombie processes and (more) memory leaks.http://stackoverflow.com/questions/148838/how-do-i-configure-apache-2-2-for-ruby-on-rails-in-windows/148859#148859Comment by Dave Nolan on How do I configure Apache 2.2 for Ruby on Rails in Windows?Dave Nolan2008-09-29T14:25:40Z2008-09-29T14:25:40ZNo there is not.