Ngan Pham
Ngan Pham
I feel like this is mixing in Rails' controller responsibilities into AI. I mean, isn't [Strong Parameters](http://guides.rubyonrails.org/action_controller_overview.html#strong-parameters) in charge of this kind of security? And the whole reason why `attr_protected`...
We're seeing this problem on rails 4.2 -- it's pretty bad. What fixed it for us was https://github.com/frankel/octopus/commit/d56674343ebc8c34333dd56c9615e04779b32b65, but we're not sure what the repercussions are. Basic terminal testing looks...
So I found a workaround for this. The answer is to use slave groups on single shard: ``` replicated: true environments: - production production: read_replicas: slave1: adapter: ... username: ......
@fertobar keep in mind that calling `User#microposts` doesn't actually load the records and therefore doesn't it the DB (Rails lazyloads queries). `User.find(1).microposts.class` is not an `Array`. I think what's happening...
@buildkite-agent-releaser I would love to see this get added. We’re waiting on this exact future to unblock some quick and easy pipeline to pipeline communication. Thank you!
Sorry, I meant adding a type file to this project: https://basarat.gitbooks.io/typescript/docs/types/@types.html
I don't think Grape custom validators are reloadable ([there's a global registery that never gets reset](https://github.com/ruby-grape/grape/blob/master/lib/grape/validations/validators/base.rb#L70-L73)) so you probably shouldn't put it in `app/` since everything in there is expected...
You can use the artifact plugin and upload it on the build step (it’ll have your repo), then download it on steps that don’t have your repo.
@danginsburg jw if there's plans to add retina support for desktop-friendly fullscreen?
-highdpi doesn’t seem to work for desktop friendly fullscreen.