User Bryan Ward - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T14:10:26Zhttp://stackoverflow.com/feeds/user/126994http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1652347/rails-unorthodox-naming-of-models-with-abbreviations1Rails unorthodox naming of models with abbreviationsBryan Ward2009-10-30T21:11:07Z2009-10-31T07:34:21Z
<p>In an application I am building I am storing an XML file in my database using the <code>acts_as_tree</code> association. I would like to name the class <code>XMLElement</code> but this throws rails off since the capitalization is non-standard. It is looking for <code>XMLElement</code> from the file name <code>xml_element.rb</code>. I tried changing the filename to <code>x_m_l_element.rb</code> to try and trick it into thinking that "XML" was really two words, but this didn't work either. Should I just suck it up and use the name <code>XmlElement</code> instead of the more ideal <code>XMLElement</code>, or is there a better way around this issue?</p>
http://stackoverflow.com/questions/1632584/how-to-use-rails-within-cygwin/1632728#16327280Answer by Bryan Ward for How to use rails within cygwinBryan Ward2009-10-27T18:20:01Z2009-10-27T18:20:01Z<p>If you are just looking to install so you can use it in cmd, then you can do this without having to use cygwin. You can download and install ruby and rubygems in windows and then use rubygems to install rails and any other gems you need. You then just have to set the path properly to include the bin directory of the ruby installation and you should be able to use ruby from cmd in windows. This doesn't directly answer your questions I know, but if you are just looking for rails in the cmd, I hope it is helpful.</p>
http://stackoverflow.com/questions/1119614/return-empty-cell-from-formula-in-excel2Return empty cell from formula in ExcelBryan Ward2009-07-13T14:00:14Z2009-09-23T16:30:28Z
<p>I need to return an empty cell from an Excel formula, but it appears that excel treats an empty string or a reference to an empty cell differently than a true empty cell. So essentially I want need something like</p>
<pre><code>=IF(some_condition,EMPTY(),some_value)
</code></pre>
<p>I tried to do things such as</p>
<pre><code>=IF(some_condition,"",some_value)
</code></pre>
<p>and</p>
<pre><code>=IF(some_condition,,some_value)
</code></pre>
<p>and assuming B1 is an empty cell</p>
<pre><code>=IF(some_condition,B1,some_value)
</code></pre>
<p>but none of these appear to be true empty cells, I'm guessing because they are the result of a formula. Is there any way to populate a cell if and only if some condition is met and otherwise keep the cell truly empty?</p>
<p>EDIT: as recommended I tried to return NA(), but for my purposes this did not work either. Is there a way to do this with VB?</p>
<p>EDIT: I am building a worksheet which pulls in data from other worksheets that is formatted to the very specific demands of an application which imports the data into a database. I do not have access to change the implementation of this application, and it fails if the value is "" instead of actually empty.</p>
http://stackoverflow.com/questions/1430623/using-attributes-to-specify-element-structure-in-xsd0Using attributes to specify element structure in XSDBryan Ward2009-09-16T02:26:50Z2009-09-16T04:47:55Z
<p>I would like to specify the structure of underlying child elements based upon an xml attribute value. For example:</p>
<pre><code><param type="uniform">
<high>10</high>
<low>0</low>
</param>
<param2 type="normal">
<mean>5</mean>
<stdev>2.5</mean>
<param2>
</code></pre>
<p>Is there a way to validate this type of structure using XSD?</p>
http://stackoverflow.com/questions/1396759/xsd-schema-validation-in-ruby1XSD Schema Validation in RubyBryan Ward2009-09-08T22:53:07Z2009-09-08T23:28:55Z
<p>I have found several sources regarding how to validate an xml document against a schema, but I have an application in ruby in which I need to validate that a user supplied schema is a valid schema itself. Is there a way to that I can check this? Is there an XSD schema to validate an XSD schema? Or are there libraries or gems that do this for me? </p>
http://stackoverflow.com/questions/1204179/does-the-iif-function-compute-both-paths-in-ssrs-or-is-it-short-circuted/1290301#12903010Answer by Bryan Ward for Does the iif function compute both paths in SSRS or is it short-circuted?Bryan Ward2009-08-17T20:42:06Z2009-08-17T20:42:06Z<p>This happens because in VBScript all conditions within an IIF will be evaluated first before any functionality occurs.</p>
http://stackoverflow.com/questions/1275443/publish-to-google-tasks-from-rails-application1Publish to Google Tasks from rails applicationBryan Ward2009-08-14T00:35:38Z2009-08-14T11:50:51Z
<p>With iCal you can publish calendars for users to incorporate into their own calendars in Google Calendar. Is there a similar way to publish tasks to be publicly visible and able to be incorporated into a task manager such as Google Tasks or Remember The Milk?</p>
http://stackoverflow.com/questions/1035569/whats-the-best-guide-to-rails-routes-for-the-totally-confused/1227681#12276811Answer by Bryan Ward for What's the best guide to Rails routes for the totally confused?Bryan Ward2009-08-04T13:55:59Z2009-08-04T13:55:59Z<p>One thing to note when you are learning and experimenting with rails routes is that there is a way to see what rails is actually doing with your <code>config/routes.rb</code> file.</p>
<pre><code>$rake routes
</code></pre>
<p>this will return all of the routes it has setup based upon your <code>config/routes.rb</code> file. This has been particularly helpful for me as I have learned about how all of the route variables names are setup, such as <code>new_model1_model2_path(@model1)</code>.</p>
http://stackoverflow.com/questions/1215245/ruby-unit-testing-how-to-fake-time-now/1227328#12273280Answer by Bryan Ward for Ruby unit testing: how to fake Time.now? Bryan Ward2009-08-04T12:49:10Z2009-08-04T12:49:10Z<p>Also see <a href="http://stackoverflow.com/questions/1225708/overriding-time-now-in-ruby-for-testing-purposes/1227209#1227209">this question</a> where I put this comment as well.</p>
<p>Depending upon what you are comparing <code>Time.now</code> to, sometimes you can change your fixtures to accomplish the same goal or test the same feature. For example, I had a situation where I needed one thing to happen if some date was in the future and another to happen if it was in the past. What I was able to do was include in my fixtures some embedded ruby (erb):</p>
<pre><code>future:
comparing_date: <%= Time.now + 10.years %>
...
past:
comparing_date: <%= Time.now - 10.years %>
...
</code></pre>
<p>Then in your tests then you choose which one to use to test the different features or actions based upon the time relative to <code>Time.now</code>.</p>
http://stackoverflow.com/questions/834105/generating-graphs-in-a-rubyonrails-application/1227300#12273000Answer by Bryan Ward for Generating graphs in a RubyOnRails applicationBryan Ward2009-08-04T12:42:17Z2009-08-04T12:42:17Z<p>There is also a <a href="http://rgplot.rubyforge.org/" rel="nofollow">ruby gem for gnuplot</a>. While this might not be as easy to use as Gruff or googlecharts, it will provide more flexibility for more scientific graphs. For example, neither google charts or gruff provided support for plotting confidence intervals last I checked, while gnuplot does.</p>
http://stackoverflow.com/questions/1215245/ruby-unit-testing-how-to-fake-time-now/1227209#12272090Answer by Bryan Ward for Ruby unit testing: how to fake Time.now? Bryan Ward2009-08-04T12:26:58Z2009-08-04T12:26:58Z<p>Depending upon what you are comparing <code>Time.now</code> to, sometimes you can change your fixtures to accomplish the same goal or test the same feature. For example, I had a situation where I needed one thing to happen if some date was in the future and another to happen if it was in the past. What I was able to do was include in my fixtures some embedded ruby (erb):</p>
<pre><code>future:
comparing_date: <%= Time.now + 10.years %>
...
past:
comparing_date: <%= Time.now - 10.years %>
...
</code></pre>
<p>Then in your tests then you choose which one to use to test the different features or actions based upon the time relative to <code>Time.now</code>.</p>
http://stackoverflow.com/questions/1226171/find-the-current-stdout-or-how-to-redirect-the-output-back-to-console/1227110#12271101Answer by Bryan Ward for Find the current stdout OR How to redirect the output back to console.Bryan Ward2009-08-04T12:07:46Z2009-08-04T12:07:46Z<p>If you are only interested in an easier way to run administrative tasks as root, there might be a few other things you might consider.</p>
<pre><code>$sudo -s
</code></pre>
<p>This will give you a shell in which you can submit commands as your sudo'd self (assuming that sudo has been setup so that you can run a shell via sudo).</p>
<p>Another thing you can do, though not always recommended or considered good form in Ubuntu is to <a href="http://www.debianadmin.com/enable-and-disable-ubuntu-root-password.html" rel="nofollow">create a root account</a>:</p>
<pre><code>$sudo passwd root
</code></pre>
<p>then you can login as root and administer things that way.</p>
<p>I know this doesn't answer your specific question about ruby, but I hope you find it helpful.</p>
http://stackoverflow.com/questions/1224623/with-common-table-expression-vs-create-view-performance1WITH Common Table Expression vs. CREATE VIEW performanceBryan Ward2009-08-03T21:02:56Z2009-08-03T21:16:22Z
<p>I have several queries which use a WITH clause, or Common Table Expression, with a UNION ALL statement to recur through a table with a tree like structure in SQL server as described <a href="http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships" rel="nofollow">here</a>. Would I see a difference in performance if I were to CREATE that same VIEW instead of including it with the WITH clause and having it generated every time I run the query? Would it generally be considered good practice to actually CREATE the view since it is used in several queries?</p>
http://stackoverflow.com/questions/1212364/mysql-developer-certification1MySQL Developer CertificationBryan Ward2009-07-31T12:48:42Z2009-07-31T13:00:01Z
<p>I am an undergraduate looking to go to grad school for a masters or PhD. I have worked on several different projects which relied heavily upon a SQL database (MySQL and SQL Server). I have enjoyed this work and feel that I have developed a pretty strong working knowledge of SQL. I see that MySQL offers developer certification and I am curious if this is a worthwhile investment.</p>
<p>In general, when is it advantageous to get a MySQL developer certification? What are the potential benefits?</p>
http://stackoverflow.com/questions/1208854/sql-group-by-case-statement-with-aggregate-function0SQL GROUP BY CASE statement with aggregate functionBryan Ward2009-07-30T19:38:28Z2009-07-30T21:01:27Z
<p>I have a column which looks something like this:</p>
<pre><code>CASE
WHEN col1 > col2 THEN SUM(col3*col4)
ELSE 0
END AS some_product
</code></pre>
<p>And I would like to put it in my GROUP BY clause, but this seems to cause problems because there is an aggregate function in column. Is there a way to GROUP BY a column alias such as <code>some_product</code> in this case, or do I need to put this in a subquery and group on that?</p>
http://stackoverflow.com/questions/1169030/rails-renaming-associations0rails renaming associationsBryan Ward2009-07-23T00:47:18Z2009-07-23T00:56:12Z
<p>I have two models, TreeNode and User. Each user <code>has_one</code> TreeNode, which is the root of the tree.</p>
<pre><code>class TreeNode
acts_as_tree
belongs_to :user
end
class User
has_one :tree_node
end
</code></pre>
<p>I would like to have this setup so that rails will make the association so that I can do something like</p>
<pre><code>User.first.tree
</code></pre>
<p>instead of </p>
<pre><code>User.first.tree_node
</code></pre>
<p>How would one go about doing something like this?</p>
http://stackoverflow.com/questions/1160285/single-table-inheritance-sti-column-associations0Single Table Inheritance (STI) column associationsBryan Ward2009-07-21T16:28:50Z2009-07-21T16:55:43Z
<p>When using single table inheritance does one have to be careful not to populate the columns which are specific to different models? Is there a way to specify which columns each model uses?</p>
http://stackoverflow.com/questions/1139552/find-html-verb-for-actions-in-rails2Find HTML verb for actions in railsBryan Ward2009-07-16T18:48:58Z2009-07-16T19:34:08Z
<p>Is there a way to look up the HTML for a given controller action? For example, I would like to be able to associate GET with index and PUT with update. I want to be able to do this dynamically based on the routes.</p>
<p>I can get the action methods for each controller using Controller.action_methods, but this returns a set of strings of action methods. Ideally what I would like is a hash of the form: <code>{:action => :verb}</code>.</p>
http://stackoverflow.com/questions/1137589/is-it-possible-and-or-advisable-to-generate-tests-dynamically-in-rails0Is it possible and/or advisable to generate tests dynamically in rails?Bryan Ward2009-07-16T13:28:14Z2009-07-16T14:16:39Z
<p>One trick I have found very handy in rails application programming is that <code>class_eval</code> can be used to create methods on the fly. I'm starting to get into testing now and I wonder if a similar idea could be used to generate tests.</p>
<p>For example, I have a <code>before_filter</code> to require a user to be logged in for all of the actions in a controller. I would like to write tests which ensure that the <code>before_filter</code> is being applied for all actions. Instead of writing out each test individually I would like to instead generate all of these test automatically.</p>
<p>Is this type of testing advisable, or should I just stick to writing the tests out individually? If it is, how would one go about doing so?</p>
<p>EDIT: This might look something like:</p>
<pre><code>actions = {:index => :get,:show => :get,:edit => :get,:update => :put}
actions.each_pair do |action,type|
class_eval(%Q{def test_user_required_for_#{action}
set_active_user users(:one)
#{type} :#{action}
assert flash[:error]
assert_redirected_to :action => :index
end
})
end
</code></pre>
<p>Now that people have verified this could be useful, where would I put a block of code such as this so that it will get executed once and only once to create these tests?</p>
http://stackoverflow.com/questions/1127192/rails-order-by-in-associated-model1Rails order by in associated modelBryan Ward2009-07-14T18:38:27Z2009-07-14T18:58:07Z
<p>I have two models in a has_many relationship such that Log has_many Items. Rails then nicely sets up things like: <code>some_log.items</code> which returns all of the associated items to some_log. If I wanted to order these items based on a different field in the Items model is there a way to do this through a similar construct, or does one have to break down into something like:</p>
<pre><code>Item.find_by_log_id(:all,some_log.id => "some_col DESC")
</code></pre>
http://stackoverflow.com/questions/1038245/sql-pivot-based-on-value-between-two-columns0SQL Pivot based on value between two columnsBryan Ward2009-06-24T13:11:56Z2009-06-24T20:10:41Z
<p>I have a table in which I have among other things, two columns, one for start date and another for end date. I need to write a query which will return a column for each month of the year and the value of that column is 1 if the month is between 0 otherwise. The PIVOT statement seems to be what I am looking for here, but from the best I can tell the PIVOT clause is looking to match values, not check if value is between two others. Is the PIVOT clause the right construct here, or do I need to break down and write 12 case statements and then aggregate those?</p>
http://stackoverflow.com/questions/1038245/sql-pivot-based-on-value-between-two-columns/1040684#10406841Answer by Bryan Ward for SQL Pivot based on value between two columnsBryan Ward2009-06-24T20:10:41Z2009-06-24T20:10:41Z<p>I think I've got the solution here. There are 3 basic steps:</p>
<ol>
<li>Get the a date in each of the 12 months</li>
<li>Check if this date is between the start and end date</li>
<li>PIVOT the result</li>
</ol>
<p>To get the 12 dates, one for each month, I used a little recursive like WITH statement to create a temporary table with 1 column of 12 dates:</p>
<pre><code>WITH months (date) AS (
SELECT GETDATE() AS date
UNION ALL
SELECT
DATEADD(MONTH,1,date)
FROM months
WHERE DATEDIFF(MONTH,GETDATE(),date) < 12)
</code></pre>
<p>From here I can CROSS JOIN this temporary table with the table with the information I really care about. Then I use WHERE date BETWEEN start AND end to filter off any entries which don't belong to that month. So something like this:</p>
<pre><code>SELECT other.Title, MONTH(months.date) CROSS JOIN other
WHERE months.date BETWEEN other.start AND other.end
</code></pre>
<p>In this step we must be careful to only SELECT the columns we explicity desire in the result, or those which will be aggregated using the PIVOT statement.</p>
<p>Lastly, we must pivot the result:</p>
<pre><code>PIVOT (MAX(PID) FOR date IN ([1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12]))
</code></pre>
<p>So the resultant query might look something like:</p>
<pre><code>WITH months (date) AS (
SELECT GETDATE() AS date
UNION ALL
SELECT
DATEADD(MONTH,1,date)
FROM months
WHERE DATEDIFF(MONTH,GETDATE(),date) < 12)
SELECT Title,
[1] AS January,
[2] AS February,
[3] AS March,
[4] AS April,
[5] AS May,
[6] AS June,
[7] AS July,
[8] AS August,
[9] AS September,
[10] AS October,
[11] AS November,
[12] AS December
FROM
(
SELECT other.Title,MONTH(months.date)
CROSS JOIN other
WHERE months.date BETWEEN other.startDate AND other.endDate
) AS subquery
PIVOT (MAX(PID) FOR date IN
([1],[2],[3],[4],[5],[6],[7],[8],[9],[10],[11],[12])) AS p
</code></pre>
<p>I've stripped out all of the other complexity I went through to join in other information I needed, so this isn't actually the query I wrote, but it should encapsulate the basic query structure that I used to get the result as I needed it.</p>
http://stackoverflow.com/questions/1038275/converting-hash-to-string-in-ruby/1038315#10383150Answer by Bryan Ward for Converting hash to string in Ruby. Bryan Ward2009-06-24T13:26:10Z2009-06-24T13:26:10Z<p>You can get the keys in the hash using</p>
<pre><code>flash.keys
</code></pre>
<p>and then from there you can build a new array of strings and then join them. So something like</p>
<pre><code>flash.keys.collect {|k| "<div class=#{k}>#{flash[k]}</div>"}.join('')
</code></pre>
<p>Does that do the trick?</p>
http://stackoverflow.com/questions/1028768/metaprogramming-how-much-is-too-much2Metaprogramming how much is too much?Bryan Ward2009-06-22T18:39:23Z2009-06-22T18:49:33Z
<p>As I have become more and more comfortable using metaprogramming techniques I have found more and more applications for metaprogramming as well. I'm working now on a little project in which I am creating classes and instances of these classes on the fly and I'm wondering if I have taken metaprogramming too far? Is there such a thing as too much metaprogramming? If so, where does one draw the line?</p>
http://stackoverflow.com/questions/87561/what-is-your-preferred-way-to-produce-charts-in-a-ruby-on-rails-web-application/1028735#10287350Answer by Bryan Ward for What is your preferred way to produce charts in a Ruby on Rails web application?Bryan Ward2009-06-22T18:32:03Z2009-06-22T18:32:03Z<p>GoogleCharts and Gruff charts are great, but sometimes they lack some features that I need for more scientific plotting. There is a gem for gnuplot which may be helpful for some of these situations.</p>
<p><a href="http://rgplot.rubyforge.org/" rel="nofollow">http://rgplot.rubyforge.org/</a></p>
http://stackoverflow.com/questions/1028413/can-you-delete-a-column-of-text-in-vim-vi-gvim/1028454#10284541Answer by Bryan Ward for Can you delete a column of text in Vim / Vi / gVim?Bryan Ward2009-06-22T17:28:47Z2009-06-22T17:28:47Z<p>You could also create a macro (q) that deletes the quotes and then drops down to the next line. Then you can run it a bunch of times by telling vi how many times to execute it. So if you store the macro to say the letter m, then you can run 100@m and it will delete the quotes for 100 lines. For some more information on macros:</p>
<p><a href="http://vim.wikia.com/wiki/Macros" rel="nofollow">http://vim.wikia.com/wiki/Macros</a></p>
http://stackoverflow.com/questions/169817/is-it-possible-to-query-a-tree-structure-table-in-mysql-in-a-single-query-to-any/1027758#10277580Answer by Bryan Ward for Is it possible to query a tree structure table in MySQL in a single query, to any depth?Bryan Ward2009-06-22T15:12:13Z2009-06-22T15:12:13Z<p>I found this site to be a useful resource in learning how to create a similar query:</p>
<p><a href="http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships" rel="nofollow">http://www.webinade.com/web-development/creating-recursive-sql-calls-for-tables-with-parent-child-relationships</a></p>
http://stackoverflow.com/questions/1652347/rails-unorthodox-naming-of-models-with-abbreviations/1652357#1652357Comment by Bryan Ward on Rails unorthodox naming of models with abbreviationsBryan Ward2009-10-30T23:25:57Z2009-10-30T23:25:57ZI figured that was the easiest solution, but I didn't know if there was a way to configure it, For example, Rails lets you configure the name of your database table if you have a name you like better, so I thought there might be a way to configure this as well. I take it there isn't?http://stackoverflow.com/questions/798415/typeerror-conversion-on-hasmany-relationshipComment by Bryan Ward on TypeError Conversion on has_many relationshipBryan Ward2009-10-30T06:21:45Z2009-10-30T06:21:45ZI'm getting a similar problem except that I only run into the error when I try and append a comment to (in your case) @lead.comments. Did you ever stumble upon the answer?http://stackoverflow.com/questions/1430623/using-attributes-to-specify-element-structure-in-xsd/1430996#1430996Comment by Bryan Ward on Using attributes to specify element structure in XSDBryan Ward2009-09-16T20:28:57Z2009-09-16T20:28:57ZThis is what I suspected was the case. Thanks for validating my thoughts.http://stackoverflow.com/questions/1227237/batch-fileComment by Bryan Ward on batch file Bryan Ward2009-08-04T12:33:46Z2009-08-04T12:33:46ZWhat do you want it to do?http://stackoverflow.com/questions/1224623/with-common-table-expression-vs-create-view-performance/1224662#1224662Comment by Bryan Ward on WITH Common Table Expression vs. CREATE VIEW performanceBryan Ward2009-08-03T21:15:01Z2009-08-03T21:15:01Z<a href="http://msdn.microsoft.com/en-us/library/ms190766.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
It looks like a Common Table Expression is the WITH clause that I am currently using. Is there a performance difference between the CTE and CREAT-ing an actual VIEW?http://stackoverflow.com/questions/127973/is-it-worth-swapping-ctrl-and-caps-lock-for-windows-users-that-dont-use-emacs/127984#127984Comment by Bryan Ward on Is it worth swapping Ctrl and Caps Lock for windows users that don't use Emacs Bryan Ward2009-08-03T12:46:04Z2009-08-03T12:46:04ZFor Vim users switching caps lock and control is still favorable because ctrl+[ is the same as escape. Thus you can have the control placed conveniently for other applications and avoid the extra few inch stretch to the escape key.http://stackoverflow.com/questions/1169030/rails-renaming-associations/1169037#1169037Comment by Bryan Ward on rails renaming associationsBryan Ward2009-07-23T00:56:10Z2009-07-23T00:56:10ZThanks, that works! I knew there was any easy way to do it.http://stackoverflow.com/questions/810150/uninitialized-constant-actioncontrollerdispatchermiddlewarestack/817499#817499Comment by Bryan Ward on uninitialized constant ActionController::Dispatcher::MiddlewareStackBryan Ward2009-07-21T18:07:49Z2009-07-21T18:07:49ZThis worked for me, even though it is contrary to the has_many_polymorphs documentation.http://stackoverflow.com/questions/1160285/single-table-inheritance-sti-column-associations/1160417#1160417Comment by Bryan Ward on Single Table Inheritance (STI) column associationsBryan Ward2009-07-21T16:57:45Z2009-07-21T16:57:45ZOk, that is what I had thought. What other inheritance models would provide similar functionality to STI?http://stackoverflow.com/questions/1139552/find-html-verb-for-actions-in-rails/1139809#1139809Comment by Bryan Ward on Find HTML verb for actions in railsBryan Ward2009-07-16T19:52:01Z2009-07-16T19:52:01ZThat is the data I'm looking for indeed, but now how I want to get it. I'm trying to generate simple test cases for all of my actions which require user authentication. See my previous question: <a href="http://stackoverflow.com/questions/1137589/is-it-possible-and-or-advisable-to-generate-tests-dynamically-in-rails" rel="nofollow" title="is it possible and or advisable to generate tests dynamically in rails">stackoverflow.com/questions/1137589/…</a> . I'm trying to query the Controller for it's actions and find what verb they are associated to produce the actions variable in that example.http://stackoverflow.com/questions/1139552/find-html-verb-for-actions-in-rails/1139709#1139709Comment by Bryan Ward on Find HTML verb for actions in railsBryan Ward2009-07-16T19:18:44Z2009-07-16T19:18:44ZI'm looking to essentially query the map to find the method for an action. So in your example I would like to be able to start with "create_comment" and have a way to find :post.http://stackoverflow.com/questions/1137589/is-it-possible-and-or-advisable-to-generate-tests-dynamically-in-rails/1137744#1137744Comment by Bryan Ward on Is it possible and/or advisable to generate tests dynamically in rails?Bryan Ward2009-07-16T17:59:29Z2009-07-16T17:59:29ZOk, great that works! I had been trying to write a constructor and put it in there, but you are right you just have to throw it straight into the class, not a separate method call. Thanks!http://stackoverflow.com/questions/1137589/is-it-possible-and-or-advisable-to-generate-tests-dynamically-in-rails/1137744#1137744Comment by Bryan Ward on Is it possible and/or advisable to generate tests dynamically in rails?Bryan Ward2009-07-16T14:18:47Z2009-07-16T14:18:47ZWhere could you put this code so that it gets executed once and only once to setup these test?http://stackoverflow.com/questions/1137589/is-it-possible-and-or-advisable-to-generate-tests-dynamically-in-rails/1137744#1137744Comment by Bryan Ward on Is it possible and/or advisable to generate tests dynamically in rails?Bryan Ward2009-07-16T13:52:26Z2009-07-16T13:52:26ZHow/where would one go about creating these tests then?http://stackoverflow.com/questions/1119614/return-empty-cell-from-formula-in-excel/1121137#1121137Comment by Bryan Ward on Return empty cell from formula in ExcelBryan Ward2009-07-14T11:37:57Z2009-07-14T11:37:57ZI wound up using a slight modification to this solution. I then set it to be run before the file is saved and everything works wonderfully.