Pavel Dušánek
Pavel Dušánek
Settingslogic 2.0.7 is not comaptible with ruby 1.8.7 due to its dependency on ruby-debug19. There was ``` gem 'settingslogic', '~>2.0.6' ``` in my Gemfile. Then bundle failed ``` # bundle...
Types::Params::Float and Types::Params::Decimal should coerce number parameters with comma as decimal separatotor (eg "12,34") ISO8601 allows using comma "," or full stop "." as decimal separator. Of these, the comma...
Rails 6.1 added :_default option for enum. ``` enum status: {unassigned: 0, assigned: 1, resolved: 2, closed: 3}, _default: :unassigned do ... end ```
https://gitlab.com/honeyryderchuck/httpx is ruby HTTP library with support for HTTP/2 without libcurl dependency.
I have schema that defines query,mutation and subscription root type names in schema file and does not use default names ```graphql schema { query: query_root mutation: mutation_root subscription: subscription_root }...
When rendering document with conditional relationship which is not be rendered it is still rendered in `included` documents. ```` require 'spec_helper' describe JSONAPI::Serializable::Renderer, '#render_relationship' do let(:posts) { [Post.new(id: 1), Post.new(id:...
Support for forms with plain Ruby objects which do not implement ActiveModel API.