User Tilendor - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T15:48:52Zhttp://stackoverflow.com/feeds/user/1470http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1741601/rake-dbmigrate-running-all-migrations-correctly/1744551#17445510Answer by Tilendor for rake db:migrate running all migrations correctlyTilendor2009-11-16T20:08:31Z2009-11-16T20:08:31Z<p>The migrations won't run if their schema number is in the database.</p>
<p>For older versions of rails, there will be a single row with the highest migration performed in it.</p>
<p>For newer versions, every migration gets a unique time-stamp as its version number, and its own row in schema_migrations when it gets added.</p>
http://stackoverflow.com/questions/1445341/rails-elegant-way-to-structure-models-into-subfolders-without-creating-submodule/1447526#14475264Answer by Tilendor for Rails: Elegant way to structure models into subfolders without creating submodules Tilendor2009-09-19T02:15:53Z2009-11-05T00:17:19Z<p>We needed to do this, and there is a very simple way.</p>
<p>move your models into the sub-folders, and then tell rails to load files from all subfolders in your environment.rb file:</p>
<pre><code>config.load_paths += Dir["#{RAILS_ROOT}/app/models/*"].find_all { |f| File.stat(f).directory? }
</code></pre>
<p>No namespacing required, and the models can be referred to as normal in your app</p>
http://stackoverflow.com/questions/1603115/creating-a-generic-html-header-with-blocks-in-rails/1604057#16040571Answer by Tilendor for Creating a generic HTML header with blocks in RailsTilendor2009-10-21T22:38:19Z2009-10-27T23:41:43Z<p>Shouldn't the block call be inside the content_tag?, like so:</p>
<pre><code># Renders a div for the page header with an H2 tag representing the page title
# If a block is provided, renders that content within the page header DIV
def page_header(title, &block)
concat(content_tag(:div, :class => "page_header") do
content_tag(:h2, title) +
block_given? ? block.call : ''
end)
end
</code></pre>
http://stackoverflow.com/questions/180242/how-can-i-copy-a-mysql-database-in-ruby-on-rails4How can I copy a mySQL Database in ruby on rails?Tilendor2008-10-07T20:24:21Z2009-10-27T20:23:54Z
<p>We are making a Ruby On Rails webapp where every customer gets their own database.<br />
The database needs to be created after they fill out a form on our website.</p>
<p>We have a template database that has all of the tables and columns that we need to copy. How can I do this in programatically from ruby on rails?</p>
http://stackoverflow.com/questions/12565/what-do-the-different-brackets-in-ruby-mean10What do the different brackets in Ruby Mean?Tilendor2008-08-15T18:09:52Z2009-10-13T21:47:50Z
<p>In Ruby, what's the difference between {} and []?</p>
<p>{} seems to be used for both code blocks and hashes.</p>
<p>are [] only for arrays?</p>
<p>The documention isn't very clear.</p>
http://stackoverflow.com/questions/1541347/missing-template-after-linktoremote/1541588#15415880Answer by Tilendor for Missing template after link_to_remoteTilendor2009-10-09T03:00:09Z2009-10-09T03:00:09Z<p>Try removing the / in front of shared.</p>
<pre><code>render :partial => 'shared/partials/my_partial_form', :layout => 'false'
</code></pre>
http://stackoverflow.com/questions/1522816/core-dump-equivalent-for-the-rails-exception/1523041#15230410Answer by Tilendor for Core dump equivalent for the Rails exceptionTilendor2009-10-06T00:16:00Z2009-10-06T00:16:00Z<p>I am unaware of any method to get the application state.</p>
<p>One thing I do upon occassion is install <a href="http://www.netbeans.org/" rel="nofollow">netbeans</a> which has a graphical debugger. You can hover over variables to see their values, easily walk the stack, and also have the exception trigger the debugger, rather than a breakpoint.</p>
http://stackoverflow.com/questions/1396779/create-a-playable-demo-version-of-a-rails-site/1396821#13968210Answer by Tilendor for Create a "playable demo" version of a Rails site?Tilendor2009-09-08T23:12:31Z2009-09-08T23:12:31Z<blockquote>
<p>Then it hit me that all over my app I'll have to check if I'm running in "demo-mode" (e.g, you cant register a new user in the demo) and make the site behave accordingly.</p>
</blockquote>
<p>If the site is in demo, why does it matter what the users do? Anything they do will be wiped in a few hours, so they won't be able to actually do work with it.</p>
<p>It sounds like you are trying to handicap the site so they will pay. I don't know what your site does, but if its a host based service(web page that stores & display information) then the limited life span of the data should deter squatters.</p>
<p>If you website does something that can be used elsewhere, then I can see limiting it. An example might be a service that transforms media formats, or writes resumes. If the user can do something useful in the 2 hour window and walk away with it, then you might consider branching.</p>
http://stackoverflow.com/questions/1382763/any-thoughts-on-multi-tenant-versus-multi-database-apps-in-rails/1385896#13858961Answer by Tilendor for Any thoughts on Multi-tenant versus Multi-database apps in RailsTilendor2009-09-06T15:13:36Z2009-09-06T15:13:36Z<p>It really depends upon what you're doing.</p>
<p>We are making a MIS program for the print industry that tracks inventory, employees, customers, equipment, and does some serious calculations to estimate costs of performing jobs based on a lot of input variables.</p>
<p>We are anticipating very large databases for each customer, and we currently have 170 tables. Adding another column to almost every table just to store the client_id hurts my brain.</p>
<p>We are currently in the beta stage of our program, and here are some things that we have encountered:</p>
<ul>
<li><strong>Migrations:</strong> A Rails assumption is that you will only have 1 database. You can adapt it for multiple databases, and migrations is one of them. You need a custom rake task to apply migrations to all existing databases. Be prepared to do a lot of trouble shooting because a migration may succeed on one DB, but fail on another.</li>
<li><strong>Spawning Databases:</strong> How do you create a new db? From a SQL file, copying an existing db, or running all migrations? How do you keep you schema consistent between your table creation system, and your live databases?</li>
<li><strong>Connecting to the appropriate database:</strong> We use a cookie to store a unique value that maps to the correct DB. We use a before filter in an Authorized controller that inheirits from ActionController that gets the db from that unique value and uses the establish_connection method on a Subclass of ActiveRecord::Base. This allows us to have some models pull from a common db and others from the client's specific db.</li>
</ul>
<p>If you have specific questions about any of these, I can help.</p>
http://stackoverflow.com/questions/1368575/updating-a-javascript-variable-with-ajax/1369022#13690221Answer by Tilendor for Updating a Javascript Variable with AJAXTilendor2009-09-02T17:15:50Z2009-09-02T17:15:50Z<p>I'm not sure if you need help making the ajax call, or responding to it from the controller, I'm going to explain the controller side.</p>
<p>In the controller make an action:</p>
<pre><code>def update_chart
new_something = params[:sent_value]
render :update do |page|
page.call 'updateChart', new_something
end
end
</code></pre>
<p>render :update returns javascript that will get run on the page.</p>
<p>page.call will run the function given in the first argument, and pass the rest of the arguments to .call as arguments to the javascript function.</p>
http://stackoverflow.com/questions/1368678/how-do-i-render-two-html-documents-per-action/1368941#13689411Answer by Tilendor for How do I render two html documents per action?Tilendor2009-09-02T16:58:42Z2009-09-02T16:58:42Z<p>I've successfully used both render_to_string and render on the same request.</p>
<p>I think you need to make sure you call render_to_string first. YMMV</p>
http://stackoverflow.com/questions/1225161/why-do-i-get-24-when-adding-2-4-in-javascript6why do I get 24 when adding 2 + 4 in javascriptTilendor2009-08-03T23:49:40Z2009-08-06T14:47:27Z
<p>I am trying this:</p>
<pre><code>function add_things() {
var first = '2';
var second = '4';
alert(first + second);
}
</code></pre>
<p>But it gives me 24 instead of 6, what am I doing wrong?</p>
http://stackoverflow.com/questions/369877/is-there-a-tool-that-can-visually-map-table-relationships-in-mysql0Is there a tool that can visually map table relationships in MySQL?Tilendor2008-12-15T22:13:09Z2009-07-25T16:56:15Z
<p>I'm looking for a tool that can map the relationships in my database in mysql. I would like something like the view that is generated in MS-SQL Server Management Studio in the 'Show Diagram Pane'. Does such a thing exist?</p>
<p>I'm in charge of the design of the database and its using rails conventions. I would not be adverse to specifying relationships by hand.</p>
http://stackoverflow.com/questions/1132627/rails-ar-find-where-habtm-does-not-include/1133069#11330691Answer by Tilendor for Rails/AR find where habtm does not includeTilendor2009-07-15T18:23:47Z2009-07-15T18:23:47Z<p>Use a sub-query and the NOT IN operator</p>
<pre><code>User.find(:all,:conditions => ["id NOT IN (select user_id from roles_users where role_id = ?)", Role[:admin].id)
</code></pre>
http://stackoverflow.com/questions/158851/what-are-some-good-pop-up-dialog-boxes-for-ruby-on-rails7What are some good pop-up dialog boxes for Ruby on RailsTilendor2008-10-01T17:47:47Z2009-07-02T02:38:08Z
<p>I want to use modal pop-up windows in our web app in Ruby on Rails. Note that I don't want to create a new browser window, but a sub-window inside the existing webpage. We've tried things like TinyBox, but there are issues with returning error information from inside the controller. Any good method or tool that works well in ruby?</p>
http://stackoverflow.com/questions/1071014/rails-two-way-friendship-model-contd/1071138#10711381Answer by Tilendor for Rails - Two-way "friendship" model (cont'd)Tilendor2009-07-01T20:16:09Z2009-07-01T20:16:09Z<p>There is a similiar question with a good answer found here:
<a href="http://stackoverflow.com/questions/623909/rails-model-with-foreignkey-and-link-table/623956#624261">link table with foreign keys</a></p>
http://stackoverflow.com/questions/702585/simulating-a-tab-keypress-using-javascript/1046493#10464932Answer by Tilendor for Simulating a tab keypress using JavaScriptTilendor2009-06-25T22:10:53Z2009-06-25T22:10:53Z<p>This is the solution I used on our webapp for two custom controls, a pop-up calendar and a pop-up unit / value weight selector (clicking the text box pops up a div with two selects)</p>
<pre><code>function tab_focus(elem)
var fields = elem.form.getElements()
for(var i=0;i<fields.length;i++) {
if(fields[i].id == elem.id){
for(i=i+1;i<fields.length;i++){
if(fields[i].type != 'hidden'){
fields[i].focus()
return
}
}
break;
}
}
elem.form.focusFirstElement();
}
</code></pre>
<p>This is using the Prototype framework and expects an extended element(ie $('thing_id')) as its parameter.</p>
<p>It gets the form the element belongs to, and loops through the elements of the form until it finds itself. </p>
<p>It then looks for the first element after it that is not hidden, and passes it the focus. </p>
<p>If there are no elements after it in the form, it moves the focus back the to first element in the form. I could instead find the next form on the page through document.forms, but most of our pages use a single form.</p>
http://stackoverflow.com/questions/894860/how-do-i-make-a-default-value-for-a-parameter-to-a-javascript-function1How do I make a default value for a parameter to a javascript function [closed]Tilendor2009-05-21T20:07:17Z2009-05-22T08:58:04Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/148901/is-there-a-better-way-to-do-optional-function-parameters-in-javascript">Is there a better way to do optional function parameters in Javascript?</a> </p>
</blockquote>
<p>I would like a javascript function to have optional arguments which I set a default on, which gets used if the value isn't defined. In ruby you can do it like this:</p>
<pre><code>def read_file(file, delete_after = false)
# code
end
</code></pre>
<p>Does this work in javascript?</p>
<pre><code>function read_file(file, delete_after = false) {
// Code
}
</code></pre>
http://stackoverflow.com/questions/825748/how-do-i-pass-command-line-arguments-to-a-rake-task3How do I pass command line arguments to a rake task?Tilendor2009-05-05T16:27:50Z2009-05-07T18:55:14Z
<p>I've got a rake task that I am making that needs to insert a value into multiple databases. </p>
<p>I'd like to be able to pass this value into the rake task from the command line, <em>or from another rake task</em>, how can I do this?</p>
http://stackoverflow.com/questions/830423/how-do-i-find-the-source-file-for-a-rake-task0How do I find the source file for a rake task?Tilendor2009-05-06T16:18:34Z2009-05-06T18:04:52Z
<p>I know you can view all possible rake tasks by typing</p>
<pre><code>rake -T
</code></pre>
<p>But I need to know what exactly a task does. From the output, how can I find a source file that actually has the task? For example, I'm trying to find the source for the db:schema:dump task.</p>
http://stackoverflow.com/questions/825748/how-do-i-pass-command-line-arguments-to-a-rake-task/825864#8258642Answer by Tilendor for How do I pass command line arguments to a rake task?Tilendor2009-05-05T16:51:45Z2009-05-05T16:51:45Z<p>I've found the answer from these two websites: <a href="http://nhw.pl/wp/2008/10/11/rake-and-arguments-for-tasks" rel="nofollow">Net Maniac</a> and <a href="http://www.aimred.com/news/developers/2008/10/16/arguments-for-rake/" rel="nofollow">Aimred</a>.</p>
<p>You need to have version > 0.8 of rake to use this technique</p>
<p>The normal rake task description is this:</p>
<pre><code>desc 'Task Description'
task :task_name => [:depends_on_taskA, :depends_on_taskB] do
#interesting things
end
</code></pre>
<p>To pass arguments, do three things:</p>
<ol>
<li>Add the argument names after the task name, separated by commas.</li>
<li>Put the dependencies at the end using :needs => [...]</li>
<li>Place |t, args| after the do. (t is the object for this task)</li>
</ol>
<p>To access the arguments in the script, use args.arg_name</p>
<pre><code>desc 'Takes arguments task'
task :task_name, :display_value, :display_times, :needs => [:depends_on_taskA, :depends_on_taskB] do |t, args|
args.display_times.to_i.times do
puts args.display_value
end
end
</code></pre>
<p>To call this task from the command line, pass it the arguments in []s</p>
<pre><code>rake task_name['Hello',4]
</code></pre>
<p>will output</p>
<pre><code>Hello
Hello
Hello
Hello
</code></pre>
<p>and if you want to call this task from another task, and pass it arguments, use invoke</p>
<pre><code>task :caller do
puts 'In Caller'
Rake::Task[:task_name].invoke('hi',2)
end
</code></pre>
<p>then the command</p>
<pre><code>rake caller
</code></pre>
<p>will output</p>
<pre><code>In Caller
hi
hi
</code></pre>
<p>I haven't found a way to pass arguments as part of a dependency, as the following code breaks:</p>
<pre><code>task :caller => :task_name['hi',2]' do
puts 'In Caller'
end
</code></pre>
http://stackoverflow.com/questions/782961/why-is-ruby-bigdecimal-returning-a-weird-value2Why is Ruby BigDecimal returning a weird value?Tilendor2009-04-23T18:32:14Z2009-04-23T21:05:33Z
<p>Hi, I am writing code that will deal with currencies, charges, etc.. I am going to use the BigDecimal class for math & storage.</p>
<p>We ran into something weird with it, however.</p>
<p>Using this statement:</p>
<pre><code> 1876.8 == BigDecimal('1876.8')
</code></pre>
<p>it returns false.</p>
<p>If I run those values through a formatting string "%.13f" I get:</p>
<pre><code>"%.20f" % 1876.8 => 1876.8000000000000
"%.20f" % BigDecimal('1876.8') => 1876.8000000000002
</code></pre>
<p>Note the extra 2 from the BigDecimal at the 13th decimal place.</p>
<p>I thought BigDecimal was supposed to counter the inaccuracies of storing real numbers directly in the native floating point of the computer. Where is this 2 coming from?</p>
http://stackoverflow.com/questions/717392/rails-finding-through-scope-best-practices/717630#7176301Answer by Tilendor for Rails - finding through scope best practices?Tilendor2009-04-04T19:13:50Z2009-04-05T14:10:55Z<p>If you are only getting the event to get a question, doing Event.find is unnecessary and causes additional work.</p>
<p>Both of the actions you wrote perform two queries.</p>
http://stackoverflow.com/questions/642869/eager-loading-last-subordinate-record/644961#6449612Answer by Tilendor for Eager loading last subordinate recordTilendor2009-03-13T23:24:01Z2009-03-13T23:24:01Z<p>Yes,</p>
<p>Lets take this example</p>
<pre><code>class Song < ActiveRecord::Base
has_many :votes
end
class Vote < ActiveRecord::Base
belongs_to :song
end
</code></pre>
<p>Add a new association to the Song:</p>
<pre><code>has_one :last_vote, :class_name => 'Vote', :order => 'created_at DESC'
</code></pre>
<p>this new association will always return the most recently created Vote for a Song.</p>
<p>To eager load it:</p>
<pre><code>songs = Song.find(:all, :conditions => 'artist_name = "frank"', :include => :last_vote)
</code></pre>
http://stackoverflow.com/questions/622879/ruby-on-rails-how-to-store-form-data/623983#6239830Answer by Tilendor for Ruby on Rails: How to store form dataTilendor2009-03-08T17:43:27Z2009-03-08T17:43:27Z<p>In response to the comment "I was storing the STATE_CODES as "Alabama" => "AL" instead of "AL" => "Alabama" If I do it your way, the option value in my form field would appear as AL. How do I make it show up as Alabama instead? What would the select tag look like? – Max (12 hours ago)"</p>
<p>When passing STATE_CODES to the options method or select method, use STATE_CODES.invert, which switches keys and values.</p>
http://stackoverflow.com/questions/623909/rails-model-with-foreignkey-and-link-table/623956#6239562Answer by Tilendor for Rails model with foreign_key and link tableTilendor2009-03-08T17:29:19Z2009-03-08T17:29:19Z<p>Hmm, this is a tricky one. That is because synonyms can be from either the word1 id or the word2 id or both.</p>
<p>Anyway, when using a Model for the link table, you must use the :through option on the Models that use the Link Table</p>
<pre><code>class Word < ActiveRecord::Base
has_many :links1, :class_name => 'Link', :foreign_key => 'word1_id'
has_many :synonyms1, :through => :links1, :source => :word
has_many :links2, :class_name => 'Link', :foreign_key => 'word2_id'
has_many :synonyms2, :through => :links2, :source => :word
end
</code></pre>
<p>That should do it, but now you must check two places to get all the synonyms. I would add a method that joined these, inside class Word.</p>
<pre><code>def synonyms
return synonyms1 || synonyms2
end
</code></pre>
<p>||ing the results together will join the arrays and eliminate duplicates between them.</p>
<p>*This code is untested.</p>
http://stackoverflow.com/questions/620962/back-browser-action-in-ruby-on-rails/620970#6209704Answer by Tilendor for 'Back' browser action in Ruby on RailsTilendor2009-03-07T00:17:03Z2009-03-07T00:22:26Z<p>Use</p>
<pre><code><%= link_to 'Back', :back %>
</code></pre>
<p>This is specificied in the RDoc <a href="http://api.rubyonrails.org/classes/ActionView/Helpers/UrlHelper.html#M001565" rel="nofollow">here</a></p>
<p>This generates some Javascript to navigate backward. I've just tested it, and it works.</p>
http://stackoverflow.com/questions/591939/how-can-i-format-the-value-shown-in-a-rails-edit-field/616991#6169910Answer by Tilendor for How can I format the value shown in a Rails edit field?Tilendor2009-03-05T22:38:33Z2009-03-05T22:38:33Z<p>I have done something similar. We format times and lengths using a custom form builder. It makes use of the existing text_field, but wraps it so the value can be customized:</p>
<pre><code>class SuperFormBuilder < ActionView::Helpers::FormBuilder
include ApplicationHelper
include FormHelper
include ActionView::Helpers::TagHelper
include ActionView::Helpers::FormTagHelper
def length_field(label,*args)
scale = 'medium'
args.each do |v|
if v.has_key?(:scale)
scale = v[:scale]
v.delete(:scale)
end
end
value = length_conversion(@object.send(label.to_sym),scale)
options = (args.length > 0) ? args.pop : {}
return has_error(label, text_field_tag(field_name(label),value,*args) + ' ' + length_unit(scale))
end
private
def field_name(label)
return @object_name + "[#{label}]"
end
def has_error(label, output)
return "<div class='fieldWithErrors'>#{output}</div>" if @object.errors[label]
return output
end
</code></pre>
<p>And it is used like this:</p>
<pre><code><%= form_for( @section, {:action => 'save', :id => @section.id}, :builder => SuperFormBuilder) do |sf| %>
<%= sf.length_field :feed_size_min_w, :size => 3, :scale => 'small' %>
<% end %>
</code></pre>
<p>The end result is a value in the appropriate unit based off their choice on system (Metric, Imperial) and scale IE small = inches or millimeters.</p>
<p>I basically copied the text_field method from the existing form builder, which uses the text_field_tag itself.</p>
<p>There are two gotchas: 1) Knowing the name of the object field and how to access the object to get the value which you want to format. 2) Getting the name right so when the form is submitted it is part of the correct params hash.</p>
<p>The form builder is given a class variable @object. You can get the value of the field using the .send method. In my case I send the label :feed_size_min_w to the @object and get its length back. I then convert it to my desired format, and give it to the text_field_tag.</p>
<p>The name of the field is key to having it end up in the params hash, in my instance the params[:sections] one. I made a little helper function called field_name that takes care of this.</p>
<p>Finally the has_error wraps the field in an error div if there are errors on that label.</p>
http://stackoverflow.com/questions/567636/how-do-i-get-the-number-of-seconds-between-two-datetimes-in-ruby-on-rails0How do I get the number of seconds between two DateTimes in Ruby on RailsTilendor2009-02-19T22:57:42Z2009-02-19T23:19:48Z
<p>I've got code that does time tracking for employees. It creates a counter to show the employee how long they have been clocked in for.</p>
<p>This is the current code:</p>
<pre><code> start_time = Time.parse(self.settings.first_clock_in)
total_seconds = Time.now - start_time
hours = (total_seconds/ 3600).to_i
minutes = ((total_seconds % 3600) / 60).to_i
seconds = ((total_seconds % 3600) % 60).to_i
</code></pre>
<p>This works fine. But because Time is limited to the range of 1970 - 2038 we are trying to replace all Time uses with DateTimes. I can't figure out how to get the number of seconds between two DateTimes. Subtracting them yields a Rational which I don't know how to interpret, whereas subtracting Times yields the difference in seconds.</p>
http://stackoverflow.com/questions/522408/how-to-manage-table-without-id-in-rails/524140#5241400Answer by Tilendor for How to manage table without id in Rails?Tilendor2009-02-07T17:15:56Z2009-02-07T17:15:56Z<p>I've successfully used the has_and_belongs_to_many in this situation. The join table only has foreign keys, no id key. One important thing is that you don't have a model for the Relations table, just the two has_and_belongs_to_many references in the Person class</p>
<p><a href="http://ramblings.gibberishcode.net/archives/rails-has-and-belongs-to-many-habtm-demystified/17" rel="nofollow">Here is a good thorough treatment on Has and belongs to many</a></p>
http://stackoverflow.com/questions/1600257/ironruby-on-rails-vs-ruby-on-rails-getting-started/1600531#1600531Comment by Tilendor on IronRuby On Rails VS. Ruby On Rails (Getting Started)Tilendor2009-10-21T22:45:40Z2009-10-21T22:45:40ZE text editor (e-texteditor.com) is the TextMate equivalenton windows, and very superior to scite. http://stackoverflow.com/questions/1541347/missing-template-after-linktoremote/1541588#1541588Comment by Tilendor on Missing template after link_to_remoteTilendor2009-10-12T20:30:26Z2009-10-12T20:30:26Zand my_partial_form is named _my_partial_form.html.erb?http://stackoverflow.com/questions/1270395/javascript-onbeforeunload/1270419#1270419Comment by Tilendor on JavaScript + onbeforeunloadTilendor2009-09-23T22:51:22Z2009-09-23T22:51:22ZNot tried, but make sure your function doesn't return anything at all.http://stackoverflow.com/questions/652788/what-is-the-worst-real-world-macros-pre-processor-abuse-youve-ever-come-across/1242177#1242177Comment by Tilendor on What is the worst real-world macros/pre-processor abuse you've ever come across?Tilendor2009-09-18T20:36:47Z2009-09-18T20:36:47ZI'd like to see the macros
http://stackoverflow.com/questions/1386195/hide-adsense-on-localhost/1386239#1386239Comment by Tilendor on Hide Adsense on localhostTilendor2009-09-06T18:22:03Z2009-09-06T18:22:03Zyou could go one step further with that helper and use a block
def display_ads
if ENV['RAILS_ENV'] != "development"
yield
end
end
and in the partial:
<% display_ads do %>
<div> Buy Pepsi </div>
<% end %>http://stackoverflow.com/questions/480495/accessing-associations-in-rails/480993#480993Comment by Tilendor on Accessing associations in RailsTilendor2009-09-05T01:26:08Z2009-09-05T01:26:08ZAwesome answer. Spot on.
http://stackoverflow.com/questions/7864/why-all-the-active-record-hate/7939#7939Comment by Tilendor on Why all the Active Record hate?Tilendor2009-07-10T01:24:38Z2009-07-10T01:24:38ZUsing :joins or :includes in the finds IE Customer.find(:all, :include => :contacts, :conditions => "active = 1") will do an SQL join, not a full table scan of either.http://stackoverflow.com/questions/1106996/why-do-i-have-to-restart-apache-to-properly-refresh-a-ruby-on-rails-view-in-the-b/1107030#1107030Comment by Tilendor on Why do I have to restart apache to properly refresh a Ruby on Rails view in the browser?Tilendor2009-07-10T01:17:52Z2009-07-10T01:17:52ZExcept in Vista. Mongrel is slow as can be in Vista, use webrick instead.http://stackoverflow.com/questions/766890/ruby-on-rails-on-windows-xp-ctrlc-in-console-not-stopping-mongrel/919511#919511Comment by Tilendor on Ruby on Rails on Windows XP CTRL+C in console not stopping mongrel Tilendor2009-06-18T19:19:18Z2009-06-18T19:19:18ZI ran into this problem too. Ctrl+Pause/Break worked wonderfully. This seems to be a new issue with rails 2.3.2. I just upgraded from 2.1.1. If I change my environment to 2.3.2 Ctrl+C doesn't work, change it back to 2.2.2, works great.http://stackoverflow.com/questions/830423/how-do-i-find-the-source-file-for-a-rake-task/830531#830531Comment by Tilendor on How do I find the source file for a rake task?Tilendor2009-05-06T16:49:28Z2009-05-06T16:49:28ZBut is there a programmatic way to do this? I ended up doing a find in file search.http://stackoverflow.com/questions/825748/how-do-i-pass-command-line-arguments-to-a-rake-task/825832#825832Comment by Tilendor on How do I pass command line arguments to a rake task?Tilendor2009-05-06T16:47:57Z2009-05-06T16:47:57ZThis doesn't tell me how to run the rake task with arguments from another task. It covers only command line usagehttp://stackoverflow.com/questions/782961/why-is-ruby-bigdecimal-returning-a-weird-value/783400#783400Comment by Tilendor on Why is Ruby BigDecimal returning a weird value?Tilendor2009-04-23T20:43:54Z2009-04-23T20:43:54ZI've considered that. However, we are going to be interested in supporting other currencies. That means we can't rely upon cents being the proper unit.http://stackoverflow.com/questions/782961/why-is-ruby-bigdecimal-returning-a-weird-value/783173#783173Comment by Tilendor on Why is Ruby BigDecimal returning a weird value?Tilendor2009-04-23T19:33:34Z2009-04-23T19:33:34ZI'm running Windows XP, ruby 1.8.6 (2007-09-24 patchlevel 111) [i386-mswin32]. The order doesn't effect the comparison, but BigDecimal('1876.8') == 1876.8.to_d is true.
(to_d converts to BigDecimal).
The formatting was the only way I could find a difference between the values. I agree it shouldn't be used for other preferences.http://stackoverflow.com/questions/782961/why-is-ruby-bigdecimal-returning-a-weird-value/783066#783066Comment by Tilendor on Why is Ruby BigDecimal returning a weird value?Tilendor2009-04-23T19:15:29Z2009-04-23T19:15:29ZThis was my feeling as well. Thanks!http://stackoverflow.com/questions/782961/why-is-ruby-bigdecimal-returning-a-weird-value/783004#783004Comment by Tilendor on Why is Ruby BigDecimal returning a weird value?Tilendor2009-04-23T18:44:45Z2009-04-23T18:44:45ZYes, and BigDecimal doesn't use native floating pointing numbers. Its a class that data storage doesn't use the native type. It stores it as a combination of strings and integers. I don't know the exact method.