Re: [Rails-core] Better translations organization

2019-09-04 Thread Prathamesh Sonpatki
You can check https://github.com/ruby-china/rails-guides for inspiration. - Prathamesh prathamesh.tech On Wed, Sep 4, 2019 at 9:34 PM Xavier Noria wrote: > On Tue, Sep 3, 2019 at 4:28 AM JĂșlio Campos > wrote: > > I know it sounds trivial or minor, but as a Brazilian and non-native >> English

Re: [Rails-core] Improve user feedback in rails update [Feature Request]

2016-05-17 Thread Prathamesh Sonpatki
We can definitely talk about the files which we remove specifically for older apps, like the ssl_options initializer or to_time_preserves_timezone.rb. ./prathamesh GITHUB <https://github.com/prathamesh-sonpatki> | | BigBinary <https://BigBinary.com> On Tue, May 17, 2016 at 10:

Re: [Rails-core] Commenting out default generated fixtures

2014-11-19 Thread Prathamesh Sonpatki
scaffold generator does generate test-cases > which use the fixtures. > > Cheers, > -- Yves > > On Monday, November 17, 2014 4:31:40 AM UTC+1, Prathamesh Sonpatki wrote: >> >> Hi Colin, >> >> I was suggesting that can we comment them in the generators itsel

Re: [Rails-core] Commenting out default generated fixtures

2014-11-16 Thread Prathamesh Sonpatki
, Nov 17, 2014 at 3:39 AM, Colin Law wrote: > On 16 November 2014 14:54, Prathamesh Sonpatki > wrote: > > Hello all, > > > > A newly created fixture file by Rails generators contains some fixtures > by > > default with keys 'one' and 'two'. &g

[Rails-core] Commenting out default generated fixtures

2014-11-16 Thread Prathamesh Sonpatki
Hello all, A newly created fixture file by Rails generators contains some fixtures by default with keys 'one' and 'two'. If I add any null constraint on some column in that table and try to run tests then it fails. Because Rails tries to insert records with null values on columns having not-nul