Lisa Dusseault

Results 11 issues of Lisa Dusseault

Added Markdown - a highly portable format for text content, that can greatly aid in interoperability and archivability of content. Also added another couple links while in that section.

In my tests, trying to modify a model then reload it to see if the modification method worked, I tried ``` it "updates the event" do controller.book_plan(message) event_reload = Event.find(event.id).reload...

In lib / dynamoid / persistence.rb, line 185, there's a "yield t". There's no check to see if there's a block to yield to. If there's no block passed in,...

I've got some code as follows, in which DeviceToken is a Dynamoid record and phone_number is its hash_key, but it also has a range key : ``` DeviceToken.where(phone_number: user.phone_number).each do...

ActiveRecord supports "subset conditions", e.g. http://edgeguides.rubyonrails.org/active_record_querying.html has the example: ``` Client.where(orders_count: [1,3,5]) ``` DynamoDB supports "BatchGet" : http://docs.aws.amazon.com/AWSRubySDK/latest/AWS/DynamoDB/BatchGet.html It would seem to be a good matchup. Dynamoid does not currently...

In the ManyAssocation module, the method to add an item to an association assumes that the item's id field is called ':id'. Shouldn't it use the key field defined when...

I'm using the console to debug what's going on, and from the stack trace it's clear that as soon as I create a belongs_to association, dynamoid tries to save it...

My site has a bunch of hidden forms. E.g. when the user clicks a link to "+ Invite a friend", the invite friend form .show() is called. These hidden fields...

**Describe the bug** In trying to sign up to be a PSFMember, I tried to first receive an email confirmation of my account, then when I never received that, tried...

Removes broken internal documentation link, adds new one, and adds more language suggested by jzacsh Fixes #1056