Lane LaRue

Results 8 issues of Lane LaRue

As of 0.14.9 there is a new issue, using this mod will cause massive order of magnitude slower load times. I documented the list of mods, and a save where...

I have elixir working fine on windows, however I cannot get the intellij-elixir plugin to work. When configuring the elixir SDK to use, I get this error: `The selected directory...

Kind:Bug

### Bug description Pasting code into tsx REPL fails with newline characters ### Reproduction Paste a function into tsx REPL ``` // can't paste this into REPL let reflect1 =...

bug
REPL

I may be missing something, but there is a problem with the default configuration: the default value in lib/dynamoid/config.rb sets Dynamoid::Config.adapter to be 'aws-sdk', but this causes a problem with...

With these classes ``` ruby # app/models/vehicle.rb class Vehicle include Dynamoid::Document table key: :vehicle_id field :vehicle_id field :type end # app/models/car.rb class Car < Vehicle end # app/models/boat.rb class Boat...

How do I pass query options in a find_all_by_\* query? Seems they are not passing through to the underlying query ``` ruby Comment.find_all_by_user_id_and_blog_id "1234", "1", limit: 1, scan_index_forward: true Comment.find_all_by_user_id...

You have to use `find_all instead` of `find` for tables with range keys because in dynamoid `find` destructively calls `flatten` and `unique` on the array of ids. Why is this...

Here is an rspec test demonstrating the issue ``` ruby address = Address.create(:city => 'Seattle', :deliverable => true) found = Address.find(address.id) found.deliverable.should eq true # PASSES in head found =...