User Michael Sepcot - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T00:34:43Zhttp://stackoverflow.com/feeds/user/6033http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1739139/using-order-and-limit-options-ruby-on-rails/1739533#17395330Answer by Michael Sepcot for Using :order and :limit options - Ruby On RailsMichael Sepcot2009-11-16T00:52:20Z2009-11-16T00:52:20Z<p>Is your date column actually called <code>date</code>? First, I would change that, date is the name of a function in most databases, that could be the cause of the error you are seeing. Rails uses <code>created_at</code>, <code>updated_at</code>, etc, so following that naming scheme will make your code more readable to future maintainers.</p>
<p>You could try to quote the column name in back-ticks:</p>
<pre><code>:order => "`date` desc"
</code></pre>
http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#16833181Answer by Michael Sepcot for state_machine only works for new recordsMichael Sepcot2009-11-05T20:20:44Z2009-11-05T20:46:04Z<p>Does this still happen with partial updates turned off? <code>Comment.partial_updates = false</code></p>
<p>If so, then we know the issue is with identifying dirty objects. You should be able to call <code>c.state_will_change!</code> before you call <code>c.publish</code></p>
http://stackoverflow.com/questions/1662262/rails-redirect-with-https/1662689#16626890Answer by Michael Sepcot for Rails redirect with httpsMichael Sepcot2009-11-02T17:48:44Z2009-11-02T17:48:44Z<p>Relative URLs, by definition, use the current protocol and host. If you want to change the protocol being used, you need to supply the absolute URL. I would take Justice's advice and create a method that does this for you:</p>
<pre><code>def redirect_to_secure(relative_uri)
redirect_to "https://" + request.host + relative_uri
end
</code></pre>
http://stackoverflow.com/questions/1643267/pass-additional-parameters-to-a-controller/1643437#16434371Answer by Michael Sepcot for Pass additional parameters to a controllerMichael Sepcot2009-10-29T12:41:21Z2009-10-29T12:41:21Z<p>To get a new parameter without changing routes, just pass it in as a query string:</p>
<pre><code>new?parent_id=2
</code></pre>
<p>then it will be available to you as <code>params[:parent_id]</code></p>
http://stackoverflow.com/questions/1527931/ruby-on-rails-findcreatebyuser/1527992#15279923Answer by Michael Sepcot for Ruby on Rails: "find_create_by_user"Michael Sepcot2009-10-06T20:39:22Z2009-10-06T20:47:37Z<p>You can try this a couple of different ways:</p>
<pre><code>Recipe.find_or_create_by_user_id_and_name(current_user.id, "My first recipe")
Recipe.find_or_create_by_user_id(:user_id => current_user.id, :name => "My first recipe")
</code></pre>
http://stackoverflow.com/questions/1463399/match-with-ruby-regular-expressions/1463428#14634287Answer by Michael Sepcot for match "[" with ruby regular expressionsMichael Sepcot2009-09-23T00:56:13Z2009-09-23T00:56:13Z<p>You need to escape the <code>.</code> and <code>-</code> characters:</p>
<pre><code>str =~ /\A[0-9\.\-,\[\]]*\Z/
</code></pre>
http://stackoverflow.com/questions/1448670/ruby-stringtoclass/1448736#14487363Answer by Michael Sepcot for Ruby String#to_classMichael Sepcot2009-09-19T15:11:40Z2009-09-19T15:11:40Z<p>I would take a look at <code>ActiveSupport::CoreExtensions::String::Inflections</code> specifically it's <code>constantize</code> method:</p>
<pre><code>def constantize(camel_cased_word)
names = camel_cased_word.split('::')
names.shift if names.empty? || names.first.empty?
constant = Object
names.each do |name|
constant = constant.const_defined?(name) ? constant.const_get(name) : constant.const_missing(name)
end
constant
end
</code></pre>
http://stackoverflow.com/questions/1441547/using-rails-models-with-acceptsnestedattributesfor/1441633#14416333Answer by Michael Sepcot for Using Rails models with accepts_nested_attributes_forMichael Sepcot2009-09-17T22:24:01Z2009-09-17T22:24:01Z<p>I was playing around with <code>accepts_nested_attributes_for</code> yesterday when trying to figure out <a href="http://stackoverflow.com/questions/1430100/rails-form-with-three-models-and-namespace/1430485#1430485">Rails form with three models and namespace</a>. I needed to setup the form slightly differently, try using: <code>person[phone_numbers_attributes][]</code></p>
http://stackoverflow.com/questions/1441328/how-to-use-tosentence-for-links/1441500#14415000Answer by Michael Sepcot for how to use to_sentence for links?Michael Sepcot2009-09-17T21:46:34Z2009-09-17T21:46:34Z<p>Make sure you are actually printing out the results with <code><%= ... %></code>, I know I sometimes forget the equal sign and spend a lot of time trying to figure things out.</p>
http://stackoverflow.com/questions/1433906/is-it-possible-to-edit-a-here-document-after-creating-it/1433920#14339205Answer by Michael Sepcot for Is it possible to edit a Here document after creating it?Michael Sepcot2009-09-16T16:05:30Z2009-09-16T16:05:30Z<p>Sure can. The syntax is there to make it easier to read, you are still just creating a string.</p>
<pre><code>>> myheredoc = <<HTMLOUTPUT
<div>This is the div</div>
HTMLOUTPUT
=> "<div>This is the div</div>\n"
>> myheredoc << "<p>some paragraph</p>"
=> "<div>This is the div</div>\n<p>some paragraph</p>"
</code></pre>
http://stackoverflow.com/questions/1198484/nested-resource-with-atom-feed-helper/1430536#14305360Answer by Michael Sepcot for Nested resource with Atom Feed HelperMichael Sepcot2009-09-16T01:58:15Z2009-09-16T01:58:15Z<p>You are using <code>favourite.asset.external_ref</code> as the title of the entry, which leaves me to believe the URL for that entry should probably be defined as: </p>
<pre><code>public_user_favourite_url(:id => favourite, :user_id => @user)
</code></pre>
<p>Which, if <code>favorite.id = 9</code> and <code>@user.id = 1</code>, would generate:</p>
<pre><code>http://localhost:3000/public/users/1/favourites/9
</code></pre>
<p>Is this what you are looking for?</p>
http://stackoverflow.com/questions/1430100/rails-form-with-three-models-and-namespace/1430485#14304851Answer by Michael Sepcot for Rails form with three models and namespaceMichael Sepcot2009-09-16T01:37:01Z2009-09-16T01:37:01Z<p>Well, this is my first time playing with <code>accepts_nested_attributes_for</code>, but with a little playing around I was able to get something to work.</p>
<p>First the model setup:</p>
<pre><code>class Person < ActiveRecord::Base
has_one :goat
accepts_nested_attributes_for :goat
end
class Goat < ActiveRecord::Base
belongs_to :person
has_many :kids
accepts_nested_attributes_for :kids
end
class Goat::Kid < ActiveRecord::Base
belongs_to :goat
end
</code></pre>
<p>With a simple restful controller:</p>
<pre><code>ActionController::Routing::Routes.draw do |map|
map.resources :farm
end
class FarmController < ApplicationController
def new
end
def create
person = Person.new params[:person]
person.save
render :text => person.inspect
end
end
</code></pre>
<p>Then comes the semi-complex form:</p>
<p>Next, the form setup:</p>
<pre><code><% form_for :person, :url => farm_index_path do |p| %>
<%= p.label :first_name %>: <%= p.text_field :first_name %><br />
<%= p.label :last_name %>: <%= p.text_field :last_name %><br />
<% p.fields_for :goat_attributes do |g| %>
<%= g.label :name %>: <%= g.text_field :name %><br />
<%= g.label :color %>: <%= g.text_field :color %><br />
<% g.fields_for 'kids_attributes[]', Goat::Kid.new do |k| %>
<%= k.label :nickname %>: <%= k.text_field :nickname %><br />
<%= k.label :age %>: <%= k.text_field :age %><br />
<% end %>
<% end %>
<%= p.submit %>
<% end %>
</code></pre>
<p>From looking at the source for <code>accepts_nested_attributes_for</code>, it looks like it will create a method for you called <code>#{attr_name}_attributes=</code>, so I needed to setup my <code>fields_for</code> to reflect that (Rails 2.3.3). Next, getting the <code>has_many :kids</code> working with <code>accepts_nested_attributes_for</code>. The <code>kids_attributes=</code> method was looking for an array of objects, so I needed to specify the array association in the form manually and tell <code>fields_for</code> what type of model to use. </p>
<p>Hope this helps.</p>
http://stackoverflow.com/questions/1430193/ruby-on-rails-mocking-a-route-in-functional-test/1430317#14303171Answer by Michael Sepcot for ruby-on-rails: mocking a route in functional testMichael Sepcot2009-09-16T00:36:45Z2009-09-16T00:36:45Z<p><code>map.connect</code> will add an unnamed route. What you probably want in your <code>routes.rb</code> is:</p>
<pre><code>map.login 'login', :controller => 'users', :action => 'login'
</code></pre>
<p>That will create the named routes <code>login_path</code> and <code>login_url</code> for you.</p>
http://stackoverflow.com/questions/1430247/passing-parameters-in-rails-redirectto/1430309#14303093Answer by Michael Sepcot for Passing parameters in rails redirect_toMichael Sepcot2009-09-16T00:31:27Z2009-09-16T00:31:27Z<p>Just append them to the options:</p>
<pre><code>redirect_to :controller => 'thing', :action => 'edit', :id => 3, :something => 'else'
</code></pre>
<p>Would yield <code>/thing/3/edit?something=else</code></p>
http://stackoverflow.com/questions/1427664/activerecord-find-with-association-details/1430299#14302991Answer by Michael Sepcot for ActiveRecord find with association detailsMichael Sepcot2009-09-16T00:25:02Z2009-09-16T00:25:02Z<p>It might be easier in a two step process.</p>
<p>Step 1 get the list of games the user is involved in: </p>
<pre><code>games_playing = user.games.for_status('playing')
</code></pre>
<p>Step 2 get a list of open games for the player:</p>
<pre><code>open_games = Game.for_status('waiting').not_including(games_playing)
</code></pre>
<p>Where you have an additional named scope in the <code>Game</code> class:</p>
<pre><code>named_scope :not_including, lambda {|g| { :conditions => ["id not in (?) ", g] }}
</code></pre>
http://stackoverflow.com/questions/1234108/how-to-make-dynamic-multi-dimensional-array-in-ruby/1234279#12342795Answer by Michael Sepcot for How to make dynamic multi-dimensional array in ruby?Michael Sepcot2009-08-05T16:19:21Z2009-08-05T16:19:21Z<p>You can get the nested array structure in one line by using a combination of <code>group_by</code>s and <code>map</code>:</p>
<pre><code>@entries.group_by {|entry| entry.created_at.year }.map { |year, entries| [year, entries.group_by {|entry| entry.created_at.month }] }
</code></pre>
http://stackoverflow.com/questions/1224718/keep-log-of-capistrano-deployments/1224851#12248512Answer by Michael Sepcot for Keep log of capistrano deploymentsMichael Sepcot2009-08-03T22:03:03Z2009-08-03T22:03:03Z<p>capistrano sets a few helpful variables, one called <code>latest_revision</code> that you can dump out to a file.</p>
<pre><code>task :mark_revision do
log = "#{deploy_to}/revisions.log"
run "(test -e #{log} || touch #{log} && chmod 666 #{log}) && " +
"echo #{latest_revision} >> #{log};"
end
</code></pre>
http://stackoverflow.com/questions/1224613/more-precise-distanceoftimeinwords/1224769#12247691Answer by Michael Sepcot for More precise distance_of_time_in_wordsMichael Sepcot2009-08-03T21:42:42Z2009-08-03T21:42:42Z<pre><code>def distance_of_time_in_hours_and_minutes(from_time, to_time)
from_time = from_time.to_time if from_time.respond_to?(:to_time)
to_time = to_time.to_time if to_time.respond_to?(:to_time)
distance_in_hours = (((to_time - from_time).abs) / 3600).round
distance_in_minutes = ((((to_time - from_time).abs) % 3600) / 60).round
difference_in_words = ''
difference_in_words << "#{distance_in_hours} #{distance_in_hours > 1 ? 'hours' : 'hour' } and " if distance_in_hours > 0
difference_in_words << "#{distance_in_minutes} #{distance_in_minutes == 1 ? 'minute' : 'minutes' }"
end
</code></pre>
http://stackoverflow.com/questions/974979/how-can-i-simply-merge-a-hash-into-a-new-one/975030#9750300Answer by Michael Sepcot for how can I simply merge a hash into a new one?Michael Sepcot2009-06-10T11:28:26Z2009-06-10T11:28:26Z<p>You can loop through each pair of the original hash and build up an array of hashes:</p>
<pre><code>hashes = []
{ "1234" => "5", "2345" => "6" }.each_pair {|key, value| hashes << { :key_id => key, :value_id => value } }
</code></pre>
<p>Will yield: </p>
<pre><code>[{:key_id=>"2345", :value_id=>"6"}, {:key_id=>"1234", :value_id=>"5"}]
</code></pre>
http://stackoverflow.com/questions/972562/rails-wont-let-me-change-records-during-migration/972721#9727212Answer by Michael Sepcot for Rails won't let me change records during migrationMichael Sepcot2009-06-09T22:00:25Z2009-06-09T22:00:25Z<p>You need to call <code>reset_column_information</code> on the model you changed before you can use the new column. Add this between the <code>add_column</code> and update:</p>
<pre><code>User.reset_column_information
</code></pre>
<p>See "Using a model after changing its table" on the <a href="http://api.rubyonrails.org/classes/ActiveRecord/Migration.html" rel="nofollow">ActiveRecord::Migration</a> page.</p>
http://stackoverflow.com/questions/927242/ruby-converting-array-of-strings-to-array-of-floats/927298#9272985Answer by Michael Sepcot for [Ruby] Converting Array of Strings to Array of FloatsMichael Sepcot2009-05-29T17:56:42Z2009-05-29T17:56:42Z<p><code>line.scan</code> returns an array, so you are inserting an array into an array. The easiest thing to do would be to call <code>flatten</code> on the array before you convert the strings to floats.</p>
<pre><code>ft = []
puts "File Name: #{ARGV[0]}"
File.open(ARGV[0], "r") do |file|
file.each_line do |line|
ft << line.scan(/\d+/)
end
end
ft = ft.flatten.collect { |i| i.to_f }
</code></pre>
http://stackoverflow.com/questions/837044/why-does-this-activerecord-method-raise-a-nameerror/837350#8373501Answer by Michael Sepcot for Why does this ActiveRecord method raise a NameError?Michael Sepcot2009-05-07T22:17:15Z2009-05-07T22:17:15Z<p>Looks like you need to define the <code>dataset_hash</code> in your method. Something like this:</p>
<pre><code>def self.get_hash(dataset_id)
dataset_hash = {}
@dataitems = Dataset.find_by_id(24).dataitems
@dataitems.each do |di|
dataset_hash[di.axis0value] = di.axis1value #assign value for each category value
end
return dataset_hash
end
</code></pre>
http://stackoverflow.com/questions/826809/problems-with-routing-a-rails-formfor/826871#8268711Answer by Michael Sepcot for Problems with routing a Rails form_forMichael Sepcot2009-05-05T20:54:40Z2009-05-05T20:54:40Z<p>Using RESTful routes, the <code>update</code> action is triggered when a <code>put</code> request is recognized. You probably just need to specify the method as an html option:</p>
<pre><code>form_for :thing, :url => { :action => "update" }, :html => { :method => 'put' } do |f|
</code></pre>
http://stackoverflow.com/questions/822304/how-do-i-add-a-new-action-to-an-already-created-controller/822397#8223972Answer by Michael Sepcot for How do i add a new action to an already created controller?Michael Sepcot2009-05-04T22:27:20Z2009-05-04T22:27:20Z<p>Well, it actually depends on how your routing is set up. If it falls through to the default route:</p>
<pre><code>map.connect ':controller/:action/:id'
</code></pre>
<p>Then you have nothing else to do (see <a href="http://api.rubyonrails.org/classes/ActionController/Routing.html" rel="nofollow">ActionController::Routing</a>).</p>
<p>If you are using RESTful resources, you need to explicitly mention the action (and request type) in the routes.rb file (see <a href="http://api.rubyonrails.org/classes/ActionController/Resources.html" rel="nofollow">ActionController::Resources</a>).</p>
http://stackoverflow.com/questions/800189/get-all-of-the-immediate-subdirectories-in-ruby/800293#8002931Answer by Michael Sepcot for get all of the immediate subdirectories in rubyMichael Sepcot2009-04-28T23:40:45Z2009-04-28T23:40:45Z<p><code>Dir.glob("**/")</code> will return an array of all paths underneath the current directory. From there you can filter the list and copy a file with <code>File.copy(from, to)</code></p>
http://stackoverflow.com/questions/743439/does-cloning-affect-activerecord-callbacks/743692#7436921Answer by Michael Sepcot for does cloning affect activerecord callbacks?Michael Sepcot2009-04-13T12:00:12Z2009-04-13T12:00:12Z<p>From the look of your class descriptions, I would not expect a cascading delete when you destroy a Schedule object. If you delete a Project object, then Rails should go through child Tasks and Schedules (not really sure what Project Schedule is here) and delete the records because of the <code>:dependent => :destroy</code> option. Tasks and Schedules are children of Project and would not cause a parent to be deleted.</p>
<p>If you want to remove the parent Project when a Schedule is deleted I would probably look at writing an <code>after_delete</code> callback.</p>
http://stackoverflow.com/questions/679962/find-project-by-permalink-404-if-not-found/680116#6801160Answer by Michael Sepcot for Find Project by Permalink, 404 if not foundMichael Sepcot2009-03-25T03:20:13Z2009-03-25T03:20:13Z<p>I assume are getting a 500 error because your show action is trying to reference attributes of <code>@project</code> when the find is returning <code>nil</code></p>
<p>You need to check to make sure <code>@projects</code> has some data and render a 404 by hand otherwise. On my site I render a custom action called 'error' in a similar situation:</p>
<pre><code>render :action => 'error', :status => 404 if @projects.blank?
</code></pre>
<p>If <code>@projects</code> exists, then the show action renders as normal.</p>
http://stackoverflow.com/questions/612258/whats-the-difference-between-rubys-puts-and-write-methods/612631#6126315Answer by Michael Sepcot for What's the difference between Ruby's puts and write methods?Michael Sepcot2009-03-04T21:54:12Z2009-03-04T21:54:12Z<p>In cases like this, I always start with the Ruby Core documentation, in this case the <a href="http://www.ruby-doc.org/core/classes/IO.html" rel="nofollow">IO</a> class.</p>
<pre><code>ios.puts(obj, ...) => nil
</code></pre>
<blockquote>
<p>Writes the given objects to ios as with <code>IO#print</code>. Writes a record separator (typically a newline) after any that do not already end with a newline sequence. If called with an array argument, writes each element on a new line. If called without arguments, outputs a single record separator.</p>
</blockquote>
<pre><code>ios.write(string) => integer
</code></pre>
<blockquote>
<p>Writes the given string to ios. The stream must be opened for writing. If the argument is not a string, it will be converted to a string using <code>to_s</code>. Returns the number of bytes written.</p>
</blockquote>
http://stackoverflow.com/questions/603047/padding-printed-output-of-tabular-data/603139#6031390Answer by Michael Sepcot for Padding printed output of tabular dataMichael Sepcot2009-03-02T17:17:19Z2009-03-02T17:17:19Z<p><a href="http://www.ruby-doc.org/core/classes/Kernel.html#M005984" rel="nofollow">Kernel.sprintf</a> should get you started.</p>
http://stackoverflow.com/questions/598177/layer-supertype-in-activerecord-rails/598234#5982343Answer by Michael Sepcot for Layer Supertype in ActiveRecord (Rails)Michael Sepcot2009-02-28T16:10:49Z2009-02-28T18:10:42Z<p>Try using an abstract class for your domain object.</p>
<pre><code>class DomainObject < ActiveRecord::Base
self.abstract_class = true
# your stuff goes here
end
</code></pre>
<p>With an abstract class, you are creating a model which cannot have objects (cannot be instantiated) and don't have an associated table.</p>
<p>From reading <a href="http://www.strictlyuntyped.com/2008/06/rails-where-to-put-other-files.html" rel="nofollow">Rails: Where to put the 'other' files</a> from Strictly Untyped, </p>
<blockquote>
<p>Files in lib are not loaded when Rails starts. Rails has overridden both <code>Class.const_missing</code> and <code>Module.const_missing</code> to dynamically load the file based on the class name. In fact, this is exactly how Rails loads your models and controllers.</p>
</blockquote>
<p>so placing the file in the lib folder, it will not be run when Rails starts and won't monkey patch ActiveRecord::Base. You could place the file in <code>config/initializers</code>, but I think there are better alternatives.</p>
http://stackoverflow.com/questions/1739139/using-order-and-limit-options-ruby-on-rails/1739533#1739533Comment by Michael Sepcot on Using :order and :limit options - Ruby On RailsMichael Sepcot2009-11-16T13:48:39Z2009-11-16T13:48:39ZCan you post the log of what SQL is trying to be executed?http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#1683318Comment by Michael Sepcot on state_machine only works for new recordsMichael Sepcot2009-11-11T19:47:21Z2009-11-11T19:47:21ZFrom <a href="http://pastie.org/689749" rel="nofollow">pastie.org/689749</a> it definitely looks like dirty updates are broken. Do dirty updates work with any other ActiveRecord model that doesn't use the state machine? Are you using any other plugins/gems that may be trying to duplicate dirty behavior? http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#1683318Comment by Michael Sepcot on state_machine only works for new recordsMichael Sepcot2009-11-10T00:22:32Z2009-11-10T00:22:32ZDoes <code>update_attribute('state','published')</code> still work? You might just want to overwrite <code>publish!</code> to make the update call manually...http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#1683318Comment by Michael Sepcot on state_machine only works for new recordsMichael Sepcot2009-11-08T03:52:22Z2009-11-08T03:52:22ZAfter <code>c.state_will_change!</code> run <code>c.changed</code> does the returned array have <code>"state"</code> in it?http://stackoverflow.com/questions/1662262/rails-redirect-with-https/1664483#1664483Comment by Michael Sepcot on Rails redirect with httpsMichael Sepcot2009-11-03T15:13:49Z2009-11-03T15:13:49ZYou can use <code>:protocol => 'https://'</code> iff you are passing a hash to <code>redirect_to</code> if you are passing a relative URL like in the question above, that will not work. I agree that a <code>before_filter</code> is the better way to go in general.http://stackoverflow.com/questions/1579635/ruby-parse-excel-95-2003-files/1580090#1580090Comment by Michael Sepcot on Ruby: Parse Excel 95-2003 files?Michael Sepcot2009-10-16T19:59:22Z2009-10-16T19:59:22ZI'm using spreadsheet for Excel generation and it works great. Haven't had much exposure to the parsing side.http://stackoverflow.com/questions/1430100/rails-form-with-three-models-and-namespace/1479371#1479371Comment by Michael Sepcot on Rails form with three models and namespaceMichael Sepcot2009-09-29T12:26:16Z2009-09-29T12:26:16ZLooks to be a problem with Rails 2.3.4 and Ruby 1.9.1, more details here: <a href="https://rails.lighthouseapp.com/projects/8994/tickets/3144" rel="nofollow">rails.lighthouseapp.com/projects/8994/…</a>http://stackoverflow.com/questions/1463399/match-with-ruby-regular-expressions/1463428#1463428Comment by Michael Sepcot on match "[" with ruby regular expressionsMichael Sepcot2009-09-23T00:58:52Z2009-09-23T00:58:52ZThis will also match an empty string. Change <code>*</code> to <code>+</code> to make sure the string has at least one character in the set.http://stackoverflow.com/questions/1451015/arithmetic-in-ruby/1451025#1451025Comment by Michael Sepcot on Arithmetic in rubyMichael Sepcot2009-09-20T13:37:01Z2009-09-20T13:37:01ZThere is a pretty good discussion about this on: <a href="http://whynotwiki.com/Ruby_/_Numbers" rel="nofollow">whynotwiki.com/Ruby_/_Numbers</a>http://stackoverflow.com/questions/1435659/jagged-oval-edge-issueComment by Michael Sepcot on Jagged Oval Edge issueMichael Sepcot2009-09-16T21:52:10Z2009-09-16T21:52:10ZNot sure what the programmer is doing with the image, but this sounds like an HTML/CSS issue, something better handled by <a href="http://doctype.com/" rel="nofollow">doctype.com</a>http://stackoverflow.com/questions/1430247/passing-parameters-in-rails-redirecttoComment by Michael Sepcot on Passing parameters in rails redirect_toMichael Sepcot2009-09-16T01:41:02Z2009-09-16T01:41:02ZWhat are you actually trying to accomplish? Have you considered saving the data in the session?http://stackoverflow.com/questions/1350359/snow-leopard-ruby-on-rails-sqlite3-issue/1352406#1352406Comment by Michael Sepcot on Snow Leopard & Ruby on Rails - SQLite3 issueMichael Sepcot2009-09-03T14:35:10Z2009-09-03T14:35:10ZMake sure you install XCode, the header files are installed as part of the XCode package.http://stackoverflow.com/questions/865748/clear-password-fields-if-errorsComment by Michael Sepcot on Clear Password Fields if errorsMichael Sepcot2009-05-14T21:15:24Z2009-05-14T21:15:24ZCan you post some of your view code? You may just want to set the password and password_confirmation to nil before you display those fields. http://stackoverflow.com/questions/453762/nomethoderror-when-trying-to-invoke-helper-method-from-rails-controllerComment by Michael Sepcot on NoMethodError when trying to invoke helper method from Rails controllerMichael Sepcot2009-01-17T18:25:17Z2009-01-17T18:25:17ZIs the controller in question inheriting from ApplicationController?http://stackoverflow.com/questions/330993/undefined-method-rails-questionComment by Michael Sepcot on undefined method rails questionMichael Sepcot2008-12-01T14:47:07Z2008-12-01T14:47:07ZDid you add anything to your routes.rb file?