Adam St. John
Adam St. John
This PR enables inline attachments for mailgun.
I struggled for a while trying to get NestedModels to work properly. The reason it wasn't working was because my parent model was declared before the nested one. This problem...
The current calendar does not allow for text input directly. Overall, it is not very accessible. [This datepicker](http://www.frequency-decoder.com/demo/date-picker-v4/) has a decent accessibility implementation that we might be able to add...
Using mongoid v3.x and railroady v1.1.0. Here is an example: ``` class Shop::Apple include Mongoid::Document # etc.. has_many :bugs end class Bug include Mongoid::Document #etc.. belongs_to :apple, class_name: "Shop::Apple" end...
Added `within_circle` and `within_sphere` queries to geo_spacial selector to handle mongodb's respective $center and $centerSphere queries. This also fixes a small typo in the documentation for `intersects_polygon` and `within_polygon` regarding...
The mongo docs specify the query as: ``` loc: { $geoWithin: { $geometry: { type : "Polygon" , coordinates: [ [ [ 0, 0 ], [ 3, 6 ], [...