dynamoid
dynamoid copied to clipboard
Ruby ORM for Amazon's DynamoDB.
Please I'm trying to integrate dynamoid into this gem, https://github.com/adamniedzielski/tiddle But it's giving errors. How can I get the class of the association? elsif resource.respond_to?(:associations) # Dynamoid resource.associations[:authentication_tokens] else def...
I'm gonna implement scope, default_scope. My code gonna be full inspired by how mongoid made it. # Features - [ ] Add scope - [ ] Add default_scope I add...
Hi, The rake task `dynamoid:create_tables` is helpful for creating all the tables the first time you deploy. But over time I found myself needing to change the schema. I understand...
howdy! First of all I'd like to thank everyone for their effort on this gem, I truly appreciate all of you work. I'm new to the gem and DynamoDB overall,...
Hi team, It seems like dynamoid is creating tables on the first write operation to that table but it doesn't do the same for the read operation. In our use...
Hi! 👋 On the documentation it states the following: > Contrary to what you'd expect, association information is always contained on the object specifying the association, even if it seems...
Thoughts on adding something like this (possibly naming it `attributes=`)? ``` # Analagous to ActiveRecord's #attributes= -- allows for writing attributes via a hash def write_attributes(attrs) attrs.each do |attr, val|...
Dynamoid relies on ActiveModel to do the serialisation of Document objects. This should allow us to filter document attributes via a custom `as_json` method, when a document is serialised to...
It seems there is a potential bug when the logger is not configured. The context for how I inadvertently had no logger configured is trying to use Dynamoid alongside [Ruby...