S Ahmed
2012-Feb-12 13:25 UTC
new project with --no-test-framework, but when creating a model it invoked test_unit
I created a new project using: rails new abc --no-test-framework -d mysql Now when creating a model I showed: create app/models/account.rb invoke test_unit create test/unit/account_test.rb create test/fixtures/accounts.yml I am using rspec, and ran rspec install and cucumbers install. Why is it still creating test_unit related files? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Xavier Dutreilh
2012-Feb-12 13:36 UTC
Re: new project with --no-test-framework, but when creating a model it invoked test_unit
--no-test-framework is not a valid option. You need to specify -T or --skip-test-unit when creating a new project. 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>> I created a new project using: > > rails new abc --no-test-framework -d mysql > > Now when creating a model I showed: > > create app/models/account.rb > invoke test_unit > create test/unit/account_test.rb > create test/fixtures/accounts.yml > > > I am using rspec, and ran rspec install and cucumbers install. > > Why is it still creating test_unit related files? > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
S Ahmed
2012-Feb-12 16:51 UTC
Re: new project with --no-test-framework, but when creating a model it invoked test_unit
How can I fix this now (my project is already created)? On Sun, Feb 12, 2012 at 8:36 AM, Xavier Dutreilh <xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org> wrote:> --no-test-framework is not a valid option. You need to specify -T > or --skip-test-unit when creating a new project. > > 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > >> I created a new project using: >> >> rails new abc --no-test-framework -d mysql >> >> Now when creating a model I showed: >> >> create app/models/account.rb >> invoke test_unit >> create test/unit/account_test.rb >> create test/fixtures/accounts.yml >> >> >> I am using rspec, and ran rspec install and cucumbers install. >> >> Why is it still creating test_unit related files? >> >> -- >> You received this message because you are subscribed to the Google Groups >> "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at >> http://groups.google.com/group/rubyonrails-talk?hl=en. >> > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Dheeraj Kumar
2012-Feb-12 16:57 UTC
Re: new project with --no-test-framework, but when creating a model it invoked test_unit
Just remove the entire test directory. Dheeraj Kumar On Sunday 12 February 2012 at 10:21 PM, S Ahmed wrote:> How can I fix this now (my project is already created)? > > On Sun, Feb 12, 2012 at 8:36 AM, Xavier Dutreilh <xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org (mailto:xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org)> wrote: > > --no-test-framework is not a valid option. You need to specify -T or --skip-test-unit when creating a new project. > > > > 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org (mailto:sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org)> > > > I created a new project using: > > > > > > rails new abc --no-test-framework -d mysql > > > > > > Now when creating a model I showed: > > > > > > create app/models/account.rb > > > invoke test_unit > > > create test/unit/account_test.rb > > > create test/fixtures/accounts.yml > > > > > > > > > > > > I am using rspec, and ran rspec install and cucumbers install. > > > > > > Why is it still creating test_unit related files? > > > > > > -- > > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > -- > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
S Ahmed
2012-Feb-12 17:08 UTC
Re: Re: new project with --no-test-framework, but when creating a model it invoked test_unit
but future rails generators will create it again. On Sun, Feb 12, 2012 at 11:57 AM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> Just remove the entire test directory. > > > Dheeraj Kumar > > On Sunday 12 February 2012 at 10:21 PM, S Ahmed wrote: > > How can I fix this now (my project is already created)? > > On Sun, Feb 12, 2012 at 8:36 AM, Xavier Dutreilh <xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org>wrote: > > --no-test-framework is not a valid option. You need to specify -T > or --skip-test-unit when creating a new project. > > 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> > > I created a new project using: > > rails new abc --no-test-framework -d mysql > > Now when creating a model I showed: > > create app/models/account.rb > invoke test_unit > create test/unit/account_test.rb > create test/fixtures/accounts.yml > > > I am using rspec, and ran rspec install and cucumbers install. > > Why is it still creating test_unit related files? > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Dheeraj Kumar
2012-Feb-12 17:22 UTC
Re: new project with --no-test-framework, but when creating a model it invoked test_unit
Simple enough to fix. open application.rb find require ''rails/all'' replace with # Pick the frameworks you want: require "active_record/railtie" require "action_controller/railtie" require "action_mailer/railtie" require "active_resource/railtie" require "sprockets/railtie" # require "rails/test_unit/railtie" I have a question, though. Why skip writing unit tests? That''s not a good practice. Dheeraj Kumar On Sunday 12 February 2012 at 10:38 PM, S Ahmed wrote:> but future rails generators will create it again. > > On Sun, Feb 12, 2012 at 11:57 AM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org (mailto:a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org)> wrote: > > Just remove the entire test directory. > > > > > > Dheeraj Kumar > > > > > > On Sunday 12 February 2012 at 10:21 PM, S Ahmed wrote: > > > > > How can I fix this now (my project is already created)? > > > > > > On Sun, Feb 12, 2012 at 8:36 AM, Xavier Dutreilh <xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org (mailto:xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org)> wrote: > > > > --no-test-framework is not a valid option. You need to specify -T or --skip-test-unit when creating a new project. > > > > > > > > 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org (mailto:sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org)> > > > > > I created a new project using: > > > > > > > > > > rails new abc --no-test-framework -d mysql > > > > > > > > > > Now when creating a model I showed: > > > > > > > > > > create app/models/account.rb > > > > > invoke test_unit > > > > > create test/unit/account_test.rb > > > > > create test/fixtures/accounts.yml > > > > > > > > > > > > > > > > > > > > I am using rspec, and ran rspec install and cucumbers install. > > > > > > > > > > Why is it still creating test_unit related files? > > > > > > > > > > -- > > > > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > > > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > > > > > -- > > > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > > > -- > > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > > > -- > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk%2Bunsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org (mailto:rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org). > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
San
2012-Feb-12 18:34 UTC
Re: Re: new project with --no-test-framework, but when creating a model it invoked test_unit
I''m using rspec Sent from my iPhone On 2012-02-12, at 12:22 PM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Simple enough to fix. > > open application.rb > > find > > require ''rails/all'' > > replace with > > # Pick the frameworks you want: > require "active_record/railtie" > require "action_controller/railtie" > require "action_mailer/railtie" > require "active_resource/railtie" > require "sprockets/railtie" > # require "rails/test_unit/railtie" > > I have a question, though. Why skip writing unit tests? That''s not a good practice. > > > Dheeraj Kumar > > On Sunday 12 February 2012 at 10:38 PM, S Ahmed wrote: > >> but future rails generators will create it again. >> >> On Sun, Feb 12, 2012 at 11:57 AM, Dheeraj Kumar <a.dheeraj.kumar-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >>> Just remove the entire test directory. >>> >>> >>> Dheeraj Kumar >>> >>> On Sunday 12 February 2012 at 10:21 PM, S Ahmed wrote: >>> >>>> How can I fix this now (my project is already created)? >>>> >>>> On Sun, Feb 12, 2012 at 8:36 AM, Xavier Dutreilh <xavier-+CfW2hhWdvFWj0EZb7rXcA@public.gmane.org> wrote: >>>>> --no-test-framework is not a valid option. You need to specify -T or --skip-test-unit when creating a new project. >>>>> >>>>> 2012/2/12 S Ahmed <sahmed1020-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> >>>>>> I created a new project using: >>>>>> >>>>>> rails new abc --no-test-framework -d mysql >>>>>> >>>>>> Now when creating a model I showed: >>>>>> >>>>>> create app/models/account.rb >>>>>> invoke test_unit >>>>>> create test/unit/account_test.rb >>>>>> create test/fixtures/accounts.yml >>>>>> >>>>>> >>>>>> I am using rspec, and ran rspec install and cucumbers install. >>>>>> >>>>>> Why is it still creating test_unit related files? >>>>>> -- >>>>>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>>>> >>>>> -- >>>>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>>> >>>> -- >>>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >>> >>> -- >>> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >>> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >> >> -- >> You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >> To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.