Andrey Novikov

Results 182 comments of Andrey Novikov

It seems to be already proposed in #354, so waiting until it gets merged and released. Meanwhile it can be used from GitHub, change line in Gemfile to: ``` ruby...

Had same error on Linux in Docker image. Problem was in system locale settings (it was set to `POSIX`). Fixed by setting locale to Unicode-enabled one: ```Dockerfile FROM ruby:2.6.2 RUN...

@eperezgarcia1201: it is inside gem: [lib/carmen/rails/action_view/form_helper.rb:224](https://github.com/jim/carmen-rails/blob/50ebda9ac696306abdfc6ebd75af06cd79de2ded/lib/carmen/rails/action_view/form_helper.rb#L224)

Hey! Unfortunately, it seems that @fullstaq-labs [has built packages only for x86-64](https://github.com/fullstaq-labs/fullstaq-ruby-server-edition#debianubuntu). Please comment and vote in this issue: https://github.com/fullstaq-labs/fullstaq-ruby-server-edition/issues/38 As soon as there will be packages for other architectures,...

I'm not proficient in Python, unfortunately. Probably won't be able to dive into it in the nearest future.

I faced with this issue too with Ruby on Rails 4.2.3, Ruby 2.2.2, Paperclip 4.3.0, and Paperclip-meta 1.2.0. @laptite your solution helps, thank you.

I'm sure this is a conflict with metadata from paperclip-av-transcoder gem, see https://github.com/ruby-av/paperclip-av-transcoder#meta-data

Currently you can workaround it like this: ``` js floors.forEach(function(floor) { floor.on("up_button_pressed down_button_pressed", function(event) { var direction = event.indexOf('up') == 0 ? 'up' : 'down'; handleHallButtonPress(floor, direction); }); }); ```

We rely on GraphQL-Ruby to generate these fingerprints via their [`GraphQL::Subscriptions::Event#fingerprint`](https://graphql-ruby.org/api-doc/2.0.7/GraphQL/Subscriptions/Event#fingerprint-instance_method) here: https://github.com/anycable/graphql-anycable/blob/736501cedd9820f3c481c6fd3b8da2c1b605f8be/lib/graphql/subscriptions/anycable_subscriptions.rb#L150-L153 Which in turn uses [`GraphQL::Query#fingerprint`](https://graphql-ruby.org/api-doc/2.0.7/GraphQL/Query.html#fingerprint-instance_method) and [`GraphQL::Query#operation_fingerprint`](https://graphql-ruby.org/api-doc/2.0.7/GraphQL/Query.html#operation_fingerprint-instance_method) that always includes selected operation name (as query can have...