Re: [Rails] Polymorphism and brittle class names

2019-01-14 Thread Christophe C
I don't follow. The column name isn't OldClassName, so I'm not sure what that assignment is supposed to mean. The issue is that a polymorphic reference can literally be any activerecord model in your app, there's no restrictions. Really the only reliable way is to look at the DB and group by

Re: [Rails] Should I use passenger in production

2019-01-14 Thread Phil Edelbrock
> On Jan 14, 2019, at 12:42 PM, fugee ohu wrote: > > > > On Monday, January 14, 2019 at 10:32:23 AM UTC-5, Phil wrote: > > >> On Jan 14, 2019, at 5:35 AM, fugee ohu > wrote: >> >> >> >> On Sunday, January 13, 2019 at 4:46:52 PM UTC-5, Walter Lee Davis wrote: >> >> >> On Jan 13, 2019,

Re: [Rails] Should I use passenger in production

2019-01-14 Thread Walter Lee Davis
> On Jan 14, 2019, at 1:42 PM, fugee ohu wrote: > > > >> On Monday, January 14, 2019 at 10:32:23 AM UTC-5, Phil wrote: >> >> >>> On Jan 14, 2019, at 5:35 AM, fugee ohu wrote: >>> >>> >>> On Sunday, January 13, 2019 at 4:46:52 PM UTC-5, Walter Lee Davis wrote: > On

Re: [Rails] Spree can't update spree_preferneces table

2019-01-14 Thread Rob Zolkos
The spree tag on StackOverflow is active. That combined with http://www.catb.org/esr/faqs/smart-questions.html should help On Mon, Jan 14, 2019 at 3:53 PM fugee ohu wrote: > Changes to spree_preferences roll back and there's no error anywhere but > it works in development If the problem is a

[Rails] Spree can't update spree_preferneces table

2019-01-14 Thread fugee ohu
Changes to spree_preferences roll back and there's no error anywhere but it works in development If the problem is a missing package at the system level then there should be an error The development machine does have a lot of packages installed that aren't installed on the production machine so

Re: [Rails] Should I use passenger in production

2019-01-14 Thread fugee ohu
On Monday, January 14, 2019 at 10:32:23 AM UTC-5, Phil wrote: > > > > On Jan 14, 2019, at 5:35 AM, fugee ohu > > wrote: > > > > On Sunday, January 13, 2019 at 4:46:52 PM UTC-5, Walter Lee Davis wrote: >> >> >> >> On Jan 13, 2019, at 12:38 PM, fugee ohu wrote: >> >> What do I need it for

Re: [Rails] Should I use passenger in production

2019-01-14 Thread Phil Edelbrock
> On Jan 14, 2019, at 5:35 AM, fugee ohu wrote: > > > > On Sunday, January 13, 2019 at 4:46:52 PM UTC-5, Walter Lee Davis wrote: > > > On Jan 13, 2019, at 12:38 PM, fugee ohu > wrote: > >> What do I need it for besides being able to restart apps >> > Passenger is necessary to translate

[Rails] Article: How to Reduce Test Interference in Minitest

2019-01-14 Thread Greg Navis
Hi! I'd like to share an article explaining my reasoning behind minitest-fork_executor - a gem for increasing process-level test isolation: How to Reduce Test Interference in Minitest

Re: [Rails] Should I use passenger in production

2019-01-14 Thread fugee ohu
On Sunday, January 13, 2019 at 4:46:52 PM UTC-5, Walter Lee Davis wrote: > > > > On Jan 13, 2019, at 12:38 PM, fugee ohu > > wrote: > > What do I need it for besides being able to restart apps > > Passenger is necessary to translate the incoming http request into a > connection to your Rails

[Rails] update as HTML I

2019-01-14 Thread fugee ohu
Processing by Spree::Admin::GeneralSettingsController#update as HTML I What is update as HTML I ? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to

[Rails] Re: Should I use passenger in production

2019-01-14 Thread Rob Jonson
On Sunday, 13 January 2019 19:38:10 UTC, fugee ohu wrote: > > What do I need it for besides being able to restart apps > http://lmgtfy.com/?q=what+does+rails+passenger+do -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe

[Rails] Copy right free Ruby on Rails Logo

2019-01-14 Thread Karthikeyan A K
Hello All, I am writing a Rails book, we designed a logo for book cover which I am releasing without copyright so that one may use it without permission for commercial use as well. you may get it here

Re: [Rails] Polymorphism and brittle class names

2019-01-14 Thread Greg Navis
Wouldn't the problem be solved by either 1. running a migration changing OldClassName to NewClassName, 2. doing `OldClassName = NewClassName` in `app/models/old_class_name.rb`? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To