[Rails] Re: Rephrased AWS an Imagemagick

2019-01-23 Thread faktsonly
Dave, I believe you can utilize *'carrierwave'* and the *'fog-aws'* gems to get what you are looking for a solution without ImageMagick: gem 'carrierwave', '~> 1.0' https://github.com/carrierwaveuploader/carrierwave gem 'fog-aws' https://github.com/fog/fog-aws This is what I most recently

Re: [Rails] When tests pass in CI but fail in the development environment

2019-01-23 Thread Rob Zolkos
I would check the environments are the same and try to diagnose what is different. Start with - Same Ruby versions - Same database and database versions (especially if the failures are database ones) Is the failures due to an area of code that uses any native gems that may have not been

Re: [Rails] When tests pass in CI but fail in the development environment

2019-01-23 Thread Brandon McClelland
The same logic for local-PASS and CI-FAIL applies here for local-FAIL and CI-PASS: the main purpose of testing in various environments is to avoid "it works on my machine!" Try reading some of the results from googling *test 'fail locally' but pass on CI -"pass locally"* and you should find that

[Rails] When tests pass in CI but fail in the development environment

2019-01-23 Thread Jason Hsu
I understand that if your app's tests fail in the continuous integration environment but pass in your development environment, you should figure out why tests fail in CI and NOT blow off the matter. What should you do when the reverse is true - when tests pass in CI but not in your local

Re: [Rails] how do gems add routes to an app

2019-01-23 Thread fugee ohu
On Tuesday, January 22, 2019 at 8:30:16 AM UTC-5, Walter Lee Davis wrote: > > > > On Jan 22, 2019, at 12:44 AM, fugee ohu > > wrote: > > > > > > > > On Sunday, January 20, 2019 at 8:12:00 PM UTC-5, Walter Lee Davis wrote: > > > > > On Jan 20, 2019, at 8:03 PM, Walter Lee Davis > wrote: