Jeremy Mickelson

Results 20 issues of Jeremy Mickelson

I just upgraded to 1.0.0 and `amMomentConfig.timezone` doesn't seem to do anything anymore. It used to be that the following would always display in the set timezone: ``` html {{...

I had need of a tool like this and built on what you started. I've extended what you had with a couple features: - Interacting with stdin and stout instead...

Protector already handles whitelisting strong params for new create and update: ``` ruby Model.new(params) Model.create(params) Model.first.update(params) ``` but it doesn't currently handle building off of an association: ``` ruby associated...

I find myself wanting to define a lot of permissions on both create and update (if a user can create a record with a given field, they most likely are...

Allow whitelisting arrays of values in strong params. Let's you write `can` statements like this: ``` ruby can :update, selected_features: [] ```

I'm not sure if this is something supported directly by Active Record or something that is added by the Composite Primary Keys gem that we use but it is possible...

Add a couple relation.clone statements to get around the new adequate record modified relation warnings. I'm not sure if this is the right way to do it, but at least...

Mocha is now up to version 3.2.0, and it looks like the latest version included here is 2.3.3, which is quite old. I'd like to use a few of the...

task
mocha

Any time multiple lines are appended to the log close together, papertrail only gets some of them. If I can't figure this out, I'm going to have to consider moving...

When joining through a table, running an outer join on the intermediary table causes incorrect SQL to be emitted. Executing the following query, without the outer join, ``` ruby Reminder.joins...