Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit.
François Beausoleil
2005-Sep-28 03:17 UTC
Re: Copy field content / object to another object
Hey ! Paul Chin said the following on 2005-09-27 21:48:> Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field.Use update_attributes, which will update known attributes (possibly ?) You might have to remove some fields, one of which would certainly be ID. dest.update_attributes(source.attributes) # NOTE: Saves dest at the same time Hope that helps ! François
For a task like you describe, which is completely internal to the database, I''d use a stored procedure (if your DB supports them). If you''re dealing with large quantities of data, I''d stay away from application code as much as possible - you don''t want to be moving big slabs of data over the network if you can avoid it. Let the database do all the work, and let it take care of all the referential integrity and other issues that could arise. Call the stored proc from your Rails code, get the returned result code and move on. Regards Dave M. On 9/28/05, Paul Chin <paulchin-0SqPFV7GnR3FK4RKhr3rmg@public.gmane.org> wrote:> Hi all > > Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field. > > table 1 table 2 > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > id id > name name > desc desc > status status > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into the > user_audit. > > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
On 9/27/05, Paul Chin <paulchin@sabah.net.my> wrote:> Hi all > > Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field. > > table 1 table 2 > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > id id > name name > desc desc > status status > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into the > user_audit. >Paul, you may want to look into the acts_as_versioned. It can be installed via: gem install acts_as_versioned—source http://techno-weenie.net/code Ken _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
> Paul, you may want to look into the acts_as_versioned. It can be installed via: > > gem install acts_as_versioned—source http://techno-weenie.net/codeOn rubyforge now... simply... gem install acts_as_versioned Ken _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit.
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sep 28, 2005, at 6:10 PM, Paul Chin wrote:> the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into the > user_audit.class User < ActiveRecord::Base has_many :audit_trail, :class_name => ''UserAudit'', :order => ''updated_at desc'' after_update :audit private def audit audit_trail.create(attributes) end end class UserAudit < ActiveRecord::Base belongs_to :user attr_accessible :whatever, :fields, :you, :track end The attr_accessible declaration restricts which attributes may be set via attributes=, create, etc. It silently drops disallowed attributes so you can go ahead and pass all the user''s attributes to audit_trail.create. Any attributes in User but not UserAudit will be ignored. Another way is to use a database trigger on user update. Regards, jeremy -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (Darwin) iD8DBQFDO0hYAQHALep9HFYRAgZ4AJ4vZxd5Wn+rxh8Ash5OWhGvl4LG5gCg4Rf+ 23XYnzqc7EGhhsTURaEZAEc=XozZ -----END PGP SIGNATURE-----
Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
On 10/2/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi all > > Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field. > > table 1 table 2 > > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > > id id > > name name > > desc desc > > status status > > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into the user_audit.The acts_as_versioned gem will do what you''re looking for: http://ar-versioned.rubyforge.org/ Otherwise you do: @user.attributes.keys.each do |key| @user_audit.send("#{key}=", @user.send(key)) end But, you have to worry about fields you don''t want to copy, such as ''id'': @user.attributes.keys.reject { |key| key == ''id'' }.each do |key| @user_audit.send("#{key}=", @user.send(key)) end -- rick http://techno-weenie.net
HI Paul, Maybe the ''attributes'' method AR::Base (http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) might be useful to you? As it returns a Hash of the attributes and values, you could: table1.attributes = table1.attributes() and then fix the missing things in table1 manually. If you have the flexibility of changing the data model, maybe you could check out the Acts As Versioned extension (http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would be a much simpler method of achieving simlar results. Cheers, Dan On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > > Hi all > > Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field. > > table 1 table 2 > > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > > id id > > name name > > desc desc > > status status > > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into the user_audit. > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails > > >
Why not create 2 model objects? On 03.Eki.2005, at 04:06, Paul Chin wrote:> Hi all > > Can anyone show me, how can I save all the data from 1 table into > another with almost the identical field. > > table 1 table 2 > > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > > id id > > name name > > desc desc > > status status > > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, > everytime after_update on user table, I want to copy the old_data > into the user_audit. > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >_______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
I do have 2 object, but to I have problem to copy the content of 1 object to the other, -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Oyku Gencay Sent: Monday, October 03, 2005 2:37 PM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object Why not create 2 model objects? On 03.Eki.2005, at 04:06, Paul Chin wrote: Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Thanks for reply, I''m right now trying out the acts_as_versioned I have did a gem install acts_as_versioned. I have added a version field in my ''incidents'' table, make a copy of it and renamed as incidents_versions , I also added a nother incident_id field in the new version table. added the word ''acts_as_versioned'' into the Incident model. class Incident < ActiveRecord::Base acts_as_versioned end but then get this error message ''undefined local variable or method ''acts_as_versioned'' fro Incident: Class. What am I missing here? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Dan Sketcher Sent: Monday, October 03, 2005 11:12 AM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object HI Paul, Maybe the ''attributes'' method AR::Base (http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) might be useful to you? As it returns a Hash of the attributes and values, you could: table1.attributes = table1.attributes() and then fix the missing things in table1 manually. If you have the flexibility of changing the data model, maybe you could check out the Acts As Versioned extension (http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would be a much simpler method of achieving simlar results. Cheers, Dan On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > > > Hi all > > Can anyone show me, how can I save all the data from 1 table into another > with almost the identical field. > > table 1 table 2 > > (user) (user_audit) > > set_primary_key :audit_id > > audit_id > > id id > > name name > > desc desc > > status status > > .... ..... > > the above are 2 tables, 1 user and the other is user_audit, everytime > after_update on user table, I want to copy the old_data into theuser_audit.> _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails > > >_______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Do you not need to ''require'' the acts_as_versioned stuff in you application.rb or somewhere similar? Geoff Paul Chin wrote:>Thanks for reply, I''m right now trying out the acts_as_versioned > >I have did a gem install acts_as_versioned. >I have added a version field in my ''incidents'' table, make a copy of it and >renamed as incidents_versions , I also added a nother incident_id field in >the new version table. >added the word ''acts_as_versioned'' into the Incident model. > >class Incident < ActiveRecord::Base > acts_as_versioned >end > >but then get this error message ''undefined local variable or method >''acts_as_versioned'' fro Incident: Class. What am I missing here? > >-----Original Message----- >From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >[mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Dan Sketcher >Sent: Monday, October 03, 2005 11:12 AM >To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >Subject: Re: [Rails] Copy field content / object to another object > > >HI Paul, > >Maybe the ''attributes'' method AR::Base >(http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) >might be useful to you? As it returns a Hash of the attributes and >values, you could: > >table1.attributes = table1.attributes() > >and then fix the missing things in table1 manually. > >If you have the flexibility of changing the data model, maybe you >could check out the Acts As Versioned extension >(http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would >be a much simpler method of achieving simlar results. > >Cheers, >Dan > >On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >> >>Hi all >> >>Can anyone show me, how can I save all the data from 1 table into another >>with almost the identical field. >> >>table 1 table 2 >> >>(user) (user_audit) >> >>set_primary_key :audit_id >> >>audit_id >> >>id id >> >>name name >> >>desc desc >> >>status status >> >>.... ..... >> >>the above are 2 tables, 1 user and the other is user_audit, everytime >>after_update on user table, I want to copy the old_data into the >> >> >user_audit. > > >>_______________________________________________ >>Rails mailing list >>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >> >> >> >> >_______________________________________________ >Rails mailing list >Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails > >_______________________________________________ >Rails mailing list >Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >http://lists.rubyonrails.org/mailman/listinfo/rails > > >_______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Right man, it works, thank alot, just 1 quick question. what is the difference between require and require_dependency? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Geoff Sent: Wednesday, October 05, 2005 9:27 PM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object Do you not need to ''require'' the acts_as_versioned stuff in you application.rb or somewhere similar? Geoff Paul Chin wrote: Thanks for reply, I''m right now trying out the acts_as_versioned I have did a gem install acts_as_versioned. I have added a version field in my ''incidents'' table, make a copy of it and renamed as incidents_versions , I also added a nother incident_id field in the new version table. added the word ''acts_as_versioned'' into the Incident model. class Incident < ActiveRecord::Base acts_as_versioned end but then get this error message ''undefined local variable or method ''acts_as_versioned'' fro Incident: Class. What am I missing here? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Dan Sketcher Sent: Monday, October 03, 2005 11:12 AM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object HI Paul, Maybe the ''attributes'' method AR::Base (http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) might be useful to you? As it returns a Hash of the attributes and values, you could: table1.attributes = table1.attributes() and then fix the missing things in table1 manually. If you have the flexibility of changing the data model, maybe you could check out the Acts As Versioned extension (http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would be a much simpler method of achieving simlar results. Cheers, Dan On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Hi, is me again, I''ved added the require in the application.rb, it works but I notice the version does not increament when ever I edit the record, it always stays at 1. What could be wrong? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Geoff Sent: Wednesday, October 05, 2005 9:27 PM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object Do you not need to ''require'' the acts_as_versioned stuff in you application.rb or somewhere similar? Geoff Paul Chin wrote: Thanks for reply, I''m right now trying out the acts_as_versioned I have did a gem install acts_as_versioned. I have added a version field in my ''incidents'' table, make a copy of it and renamed as incidents_versions , I also added a nother incident_id field in the new version table. added the word ''acts_as_versioned'' into the Incident model. class Incident < ActiveRecord::Base acts_as_versioned end but then get this error message ''undefined local variable or method ''acts_as_versioned'' fro Incident: Class. What am I missing here? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Dan Sketcher Sent: Monday, October 03, 2005 11:12 AM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object HI Paul, Maybe the ''attributes'' method AR::Base (http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) might be useful to you? As it returns a Hash of the attributes and values, you could: table1.attributes = table1.attributes() and then fix the missing things in table1 manually. If you have the flexibility of changing the data model, maybe you could check out the Acts As Versioned extension (http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would be a much simpler method of achieving simlar results. Cheers, Dan On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
Its works but the version field is not incrementing. it always stays at 1, what is wrong? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Geoff Sent: Wednesday, October 05, 2005 9:27 PM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object Do you not need to ''require'' the acts_as_versioned stuff in you application.rb or somewhere similar? Geoff Paul Chin wrote: Thanks for reply, I''m right now trying out the acts_as_versioned I have did a gem install acts_as_versioned. I have added a version field in my ''incidents'' table, make a copy of it and renamed as incidents_versions , I also added a nother incident_id field in the new version table. added the word ''acts_as_versioned'' into the Incident model. class Incident < ActiveRecord::Base acts_as_versioned end but then get this error message ''undefined local variable or method ''acts_as_versioned'' fro Incident: Class. What am I missing here? -----Original Message----- From: rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org [mailto:rails-bounces-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org]On Behalf Of Dan Sketcher Sent: Monday, October 03, 2005 11:12 AM To: rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org Subject: Re: [Rails] Copy field content / object to another object HI Paul, Maybe the ''attributes'' method AR::Base (http://rails.rubyonrails.com/classes/ActiveRecord/Base.html#M000726) might be useful to you? As it returns a Hash of the attributes and values, you could: table1.attributes = table1.attributes() and then fix the missing things in table1 manually. If you have the flexibility of changing the data model, maybe you could check out the Acts As Versioned extension (http://wiki.rubyonrails.com/rails/pages/ActsAsVersioned) which would be a much simpler method of achieving simlar results. Cheers, Dan On 03/10/05, Paul Chin <paul.dannii-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: Hi all Can anyone show me, how can I save all the data from 1 table into another with almost the identical field. table 1 table 2 (user) (user_audit) set_primary_key :audit_id audit_id id id name name desc desc status status .... ..... the above are 2 tables, 1 user and the other is user_audit, everytime after_update on user table, I want to copy the old_data into the user_audit. _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails