User Michael Sepcot - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T00:34:43Z http://stackoverflow.com/feeds/user/6033 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1739139/using-order-and-limit-options-ruby-on-rails/1739533#1739533 0 Answer by Michael Sepcot for Using :order and :limit options - Ruby On Rails Michael Sepcot 2009-11-16T00:52:20Z 2009-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 =&gt; "`date` desc" </code></pre> http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#1683318 1 Answer by Michael Sepcot for state_machine only works for new records Michael Sepcot 2009-11-05T20:20:44Z 2009-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#1662689 0 Answer by Michael Sepcot for Rails redirect with https Michael Sepcot 2009-11-02T17:48:44Z 2009-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#1643437 1 Answer by Michael Sepcot for Pass additional parameters to a controller Michael Sepcot 2009-10-29T12:41:21Z 2009-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#1527992 3 Answer by Michael Sepcot for Ruby on Rails: "find_create_by_user" Michael Sepcot 2009-10-06T20:39:22Z 2009-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 =&gt; current_user.id, :name =&gt; "My first recipe") </code></pre> http://stackoverflow.com/questions/1463399/match-with-ruby-regular-expressions/1463428#1463428 7 Answer by Michael Sepcot for match "[" with ruby regular expressions Michael Sepcot 2009-09-23T00:56:13Z 2009-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#1448736 3 Answer by Michael Sepcot for Ruby String#to_class Michael Sepcot 2009-09-19T15:11:40Z 2009-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#1441633 3 Answer by Michael Sepcot for Using Rails models with accepts_nested_attributes_for Michael Sepcot 2009-09-17T22:24:01Z 2009-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#1441500 0 Answer by Michael Sepcot for how to use to_sentence for links? Michael Sepcot 2009-09-17T21:46:34Z 2009-09-17T21:46:34Z <p>Make sure you are actually printing out the results with <code>&lt;%= ... %&gt;</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#1433920 5 Answer by Michael Sepcot for Is it possible to edit a Here document after creating it? Michael Sepcot 2009-09-16T16:05:30Z 2009-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>&gt;&gt; myheredoc = &lt;&lt;HTMLOUTPUT &lt;div&gt;This is the div&lt;/div&gt; HTMLOUTPUT =&gt; "&lt;div&gt;This is the div&lt;/div&gt;\n" &gt;&gt; myheredoc &lt;&lt; "&lt;p&gt;some paragraph&lt;/p&gt;" =&gt; "&lt;div&gt;This is the div&lt;/div&gt;\n&lt;p&gt;some paragraph&lt;/p&gt;" </code></pre> http://stackoverflow.com/questions/1198484/nested-resource-with-atom-feed-helper/1430536#1430536 0 Answer by Michael Sepcot for Nested resource with Atom Feed Helper Michael Sepcot 2009-09-16T01:58:15Z 2009-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 =&gt; favourite, :user_id =&gt; @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#1430485 1 Answer by Michael Sepcot for Rails form with three models and namespace Michael Sepcot 2009-09-16T01:37:01Z 2009-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 &lt; ActiveRecord::Base has_one :goat accepts_nested_attributes_for :goat end class Goat &lt; ActiveRecord::Base belongs_to :person has_many :kids accepts_nested_attributes_for :kids end class Goat::Kid &lt; 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 &lt; ApplicationController def new end def create person = Person.new params[:person] person.save render :text =&gt; person.inspect end end </code></pre> <p>Then comes the semi-complex form:</p> <p>Next, the form setup:</p> <pre><code>&lt;% form_for :person, :url =&gt; farm_index_path do |p| %&gt; &lt;%= p.label :first_name %&gt;: &lt;%= p.text_field :first_name %&gt;&lt;br /&gt; &lt;%= p.label :last_name %&gt;: &lt;%= p.text_field :last_name %&gt;&lt;br /&gt; &lt;% p.fields_for :goat_attributes do |g| %&gt; &lt;%= g.label :name %&gt;: &lt;%= g.text_field :name %&gt;&lt;br /&gt; &lt;%= g.label :color %&gt;: &lt;%= g.text_field :color %&gt;&lt;br /&gt; &lt;% g.fields_for 'kids_attributes[]', Goat::Kid.new do |k| %&gt; &lt;%= k.label :nickname %&gt;: &lt;%= k.text_field :nickname %&gt;&lt;br /&gt; &lt;%= k.label :age %&gt;: &lt;%= k.text_field :age %&gt;&lt;br /&gt; &lt;% end %&gt; &lt;% end %&gt; &lt;%= p.submit %&gt; &lt;% end %&gt; </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#1430317 1 Answer by Michael Sepcot for ruby-on-rails: mocking a route in functional test Michael Sepcot 2009-09-16T00:36:45Z 2009-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 =&gt; 'users', :action =&gt; '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#1430309 3 Answer by Michael Sepcot for Passing parameters in rails redirect_to Michael Sepcot 2009-09-16T00:31:27Z 2009-09-16T00:31:27Z <p>Just append them to the options:</p> <pre><code>redirect_to :controller =&gt; 'thing', :action =&gt; 'edit', :id =&gt; 3, :something =&gt; '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#1430299 1 Answer by Michael Sepcot for ActiveRecord find with association details Michael Sepcot 2009-09-16T00:25:02Z 2009-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 =&gt; ["id not in (?) ", g] }} </code></pre> http://stackoverflow.com/questions/1234108/how-to-make-dynamic-multi-dimensional-array-in-ruby/1234279#1234279 5 Answer by Michael Sepcot for How to make dynamic multi-dimensional array in ruby? Michael Sepcot 2009-08-05T16:19:21Z 2009-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#1224851 2 Answer by Michael Sepcot for Keep log of capistrano deployments Michael Sepcot 2009-08-03T22:03:03Z 2009-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} &amp;&amp; chmod 666 #{log}) &amp;&amp; " + "echo #{latest_revision} &gt;&gt; #{log};" end </code></pre> http://stackoverflow.com/questions/1224613/more-precise-distanceoftimeinwords/1224769#1224769 1 Answer by Michael Sepcot for More precise distance_of_time_in_words Michael Sepcot 2009-08-03T21:42:42Z 2009-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 &lt;&lt; "#{distance_in_hours} #{distance_in_hours &gt; 1 ? 'hours' : 'hour' } and " if distance_in_hours &gt; 0 difference_in_words &lt;&lt; "#{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#975030 0 Answer by Michael Sepcot for how can I simply merge a hash into a new one? Michael Sepcot 2009-06-10T11:28:26Z 2009-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" =&gt; "5", "2345" =&gt; "6" }.each_pair {|key, value| hashes &lt;&lt; { :key_id =&gt; key, :value_id =&gt; value } } </code></pre> <p>Will yield: </p> <pre><code>[{:key_id=&gt;"2345", :value_id=&gt;"6"}, {:key_id=&gt;"1234", :value_id=&gt;"5"}] </code></pre> http://stackoverflow.com/questions/972562/rails-wont-let-me-change-records-during-migration/972721#972721 2 Answer by Michael Sepcot for Rails won't let me change records during migration Michael Sepcot 2009-06-09T22:00:25Z 2009-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#927298 5 Answer by Michael Sepcot for [Ruby] Converting Array of Strings to Array of Floats Michael Sepcot 2009-05-29T17:56:42Z 2009-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 &lt;&lt; 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#837350 1 Answer by Michael Sepcot for Why does this ActiveRecord method raise a NameError? Michael Sepcot 2009-05-07T22:17:15Z 2009-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#826871 1 Answer by Michael Sepcot for Problems with routing a Rails form_for Michael Sepcot 2009-05-05T20:54:40Z 2009-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 =&gt; { :action =&gt; "update" }, :html =&gt; { :method =&gt; 'put' } do |f| </code></pre> http://stackoverflow.com/questions/822304/how-do-i-add-a-new-action-to-an-already-created-controller/822397#822397 2 Answer by Michael Sepcot for How do i add a new action to an already created controller? Michael Sepcot 2009-05-04T22:27:20Z 2009-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#800293 1 Answer by Michael Sepcot for get all of the immediate subdirectories in ruby Michael Sepcot 2009-04-28T23:40:45Z 2009-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#743692 1 Answer by Michael Sepcot for does cloning affect activerecord callbacks? Michael Sepcot 2009-04-13T12:00:12Z 2009-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 =&gt; :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#680116 0 Answer by Michael Sepcot for Find Project by Permalink, 404 if not found Michael Sepcot 2009-03-25T03:20:13Z 2009-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 =&gt; 'error', :status =&gt; 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#612631 5 Answer by Michael Sepcot for What's the difference between Ruby's puts and write methods? Michael Sepcot 2009-03-04T21:54:12Z 2009-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, ...) =&gt; 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) =&gt; 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#603139 0 Answer by Michael Sepcot for Padding printed output of tabular data Michael Sepcot 2009-03-02T17:17:19Z 2009-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#598234 3 Answer by Michael Sepcot for Layer Supertype in ActiveRecord (Rails) Michael Sepcot 2009-02-28T16:10:49Z 2009-02-28T18:10:42Z <p>Try using an abstract class for your domain object.</p> <pre><code>class DomainObject &lt; 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#1739533 Comment by Michael Sepcot on Using :order and :limit options - Ruby On Rails Michael Sepcot 2009-11-16T13:48:39Z 2009-11-16T13:48:39Z Can you post the log of what SQL is trying to be executed? http://stackoverflow.com/questions/1659225/statemachine-only-works-for-new-records/1683318#1683318 Comment by Michael Sepcot on state_machine only works for new records Michael Sepcot 2009-11-11T19:47:21Z 2009-11-11T19:47:21Z From <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#1683318 Comment by Michael Sepcot on state_machine only works for new records Michael Sepcot 2009-11-10T00:22:32Z 2009-11-10T00:22:32Z Does <code>update&#95;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#1683318 Comment by Michael Sepcot on state_machine only works for new records Michael Sepcot 2009-11-08T03:52:22Z 2009-11-08T03:52:22Z After <code>c.state&#95;will&#95;change!</code> run <code>c.changed</code> does the returned array have <code>&quot;state&quot;</code> in it? http://stackoverflow.com/questions/1662262/rails-redirect-with-https/1664483#1664483 Comment by Michael Sepcot on Rails redirect with https Michael Sepcot 2009-11-03T15:13:49Z 2009-11-03T15:13:49Z You can use <code>:protocol =&gt; 'https:&#47;&#47;'</code> iff you are passing a hash to <code>redirect&#95;to</code> if you are passing a relative URL like in the question above, that will not work. I agree that a <code>before&#95;filter</code> is the better way to go in general. http://stackoverflow.com/questions/1579635/ruby-parse-excel-95-2003-files/1580090#1580090 Comment by Michael Sepcot on Ruby: Parse Excel 95-2003 files? Michael Sepcot 2009-10-16T19:59:22Z 2009-10-16T19:59:22Z I'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#1479371 Comment by Michael Sepcot on Rails form with three models and namespace Michael Sepcot 2009-09-29T12:26:16Z 2009-09-29T12:26:16Z Looks 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/&hellip;</a> http://stackoverflow.com/questions/1463399/match-with-ruby-regular-expressions/1463428#1463428 Comment by Michael Sepcot on match "[" with ruby regular expressions Michael Sepcot 2009-09-23T00:58:52Z 2009-09-23T00:58:52Z This will also match an empty string. Change <code>&#42;</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#1451025 Comment by Michael Sepcot on Arithmetic in ruby Michael Sepcot 2009-09-20T13:37:01Z 2009-09-20T13:37:01Z There 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-issue Comment by Michael Sepcot on Jagged Oval Edge issue Michael Sepcot 2009-09-16T21:52:10Z 2009-09-16T21:52:10Z Not 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-redirectto Comment by Michael Sepcot on Passing parameters in rails redirect_to Michael Sepcot 2009-09-16T01:41:02Z 2009-09-16T01:41:02Z What 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#1352406 Comment by Michael Sepcot on Snow Leopard & Ruby on Rails - SQLite3 issue Michael Sepcot 2009-09-03T14:35:10Z 2009-09-03T14:35:10Z Make sure you install XCode, the header files are installed as part of the XCode package. http://stackoverflow.com/questions/865748/clear-password-fields-if-errors Comment by Michael Sepcot on Clear Password Fields if errors Michael Sepcot 2009-05-14T21:15:24Z 2009-05-14T21:15:24Z Can 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-controller Comment by Michael Sepcot on NoMethodError when trying to invoke helper method from Rails controller Michael Sepcot 2009-01-17T18:25:17Z 2009-01-17T18:25:17Z Is the controller in question inheriting from ApplicationController? http://stackoverflow.com/questions/330993/undefined-method-rails-question Comment by Michael Sepcot on undefined method rails question Michael Sepcot 2008-12-01T14:47:07Z 2008-12-01T14:47:07Z Did you add anything to your routes.rb file?