Sébastien Dubois

Results 118 comments of Sébastien Dubois

Thanks @sarkistlt, yes indeed saw that one too. But didn’t see how to connect to own endpoint, I’ve opened this (yet unanswered) question: https://github.com/marmelab/aor-graphql/issues/66 If you have any insight into...

I also got that warning when using `apparition`. Similar to the solution in #22, I've added this to my `rails_helper.rb` and it seems to work: `Capybara::Screenshot.register_driver(:apparition, &:save_screenshot)`.

It's because of [this graphql PR](https://github.com/graphql/graphql-js/pull/317) which was merged in 0.5.0 (published 2016-04-08), breaks the API. So basically graphqlhub is not compatible with any graphql client version 0.5.0 onwards.

I'm also very interested in compatibility for PaperTrail. I currently use Globalize and can't really switch unless this is supported. This library looks great though, so keep up the good...

@shioyama I just watched your RailsConf talk from last year (better late than never), was very interesting. This reminded me of this library. Are you still planning to bring PaperTrail...

Thanks @shioyama I understand. Would you be aware of other methods (outside of core) to achieve this?

I would vote for this feature as well, as I come from Globalize where this is possible using mass assignment: ```rb post = Post.new(category: :blog) post.attributes = { locale: :en,...

I am also interested in having fallbacks only in a specific block, e.g.: ``` Mobility.with_fallbacks(fallback_config) do ... end ```

We use pagy in our main app and Administrate still works fine with Kaminari for the admin dashboards. I can't remember if something was configured somewhere for this to work....

> The issue with admin_blob_path looks to me like another namespacing issue. Possibly it should be admin_active_storage_blob_path, but the namespace got lost along the way. Would you be able to...