Sébastien Grosjean
Sébastien Grosjean
I guess the example below will speak on it's own : named_scope :select_with_authors, :joins => "LEFT OUTER JOIN authors ON authors.id = posts.author_id" > > Post.select_with_authors.descend_by_author_name > > ActiveRecord::StatementInvalid: Mysql::Error:...
Hi, The migration to upgrade to 1.0 miss the following column renaming : `rename_column :versions, :changes, :modifications` Thanks for this great tool, - Sébastien Grosjean - ZenCocoon
Hi, First of all, well done for this great gem, really useful. Any reason why you choosed to don't implement a quick access method updated_at / updated_on to return object.versions.at(version_number).created_at...
Based on the version of SMS to Email with Sendgrid, here's a version with Mandrill. ``` const got = require('got'); exports.handler = function(context, event, callback) { const requestBody = {...
Paybox Direct Plus and Paybox Direct both use the same API, only the api version changes. http://www1.paybox.com/wp-content/uploads/2014/06/ManuelIntegrationPayboxDirect_V6.3_EN.pdf This commit uses Paybox Direct with a minor change to allow customizing the...
Any idea how you would handle verbose formats. It doesn't seem to be supported: I've started an attempt at https://github.com/ZenCocoon/I18n-date-parser but still keep facing tiny issues as described at https://gist.github.com/724366...
Hi, Wishing to add autocomplete support on the new HTML5 input types, like email, tel, ..., I realized that it's blocked to "text" types so far : https://github.com/madrobby/scripty2/blob/master/src/ui/controls/autocompleter.js#L23 I guess...
A Changelog would be very useful, a bit painful today to check past commits when upgrading. Migration path and how to handle deprecations would be greatly appreciated as well.
When uploading Webfonts to S3 we need to setup `Access-Control-Allow-Origin` header to either `*` to let it open to all domains or to have a config to specify which domains...