Tim Kovalev
Tim Kovalev
My test suite fails with error when trying to encode hostname: ``` .../rspec_junit_formatter-0.4.1/lib/rspec_junit_formatter.rb:173:in `encode': "\\xE2" from ASCII-8BIT to UTF-8 (Encoding::UndefinedConversionError) ``` ``` irb(main):003:0> Socket.gethostname => "timofei.kovalev\xE2\x80\x99s-MacBook-Pro" irb(main):004:0> Socket.gethostname.encoding => #...
I am using bower in my projects, so it would be great if to install this awesome package using bower.
Grape allows to define parameter as json and describe its structure: https://github.com/ruby-grape/grape#first-class-json-types. I was surprised to find out, that grape-swagger cannot handle it in the right way. The simplest example:...
The documentation I'm talking about is still present here: https://github.com/ruby-grape/grape-swagger/tree/v0.11.0#i18n
``` class Base < ActiveResource::Base self.site = "https://xxx.atlassian.net/rest/servicedeskapi/" end class Comment < Base self.prefix = "/request/:request_id/" end ``` Next getting comments by `Comment.find(:all, params: { request_id: "XX-9"})` produces invalid URL:...
``` class Base < ActiveResource::Base self.site = "https://xxx.atlassian.net/rest/servicedeskapi/" end class Request < Base has_many :comments end class Comment < Base self.prefix = "/request/:request_id" belongs_to :request end ``` Trying to get...
How about running the benchmarks again? Since last test many runtimes improved their perfomance. New results can be interesting.
Hey, this is a very nice project, but keeping swagger-ui dist files in the repository among with rake-task for downloading them makes me sad. I have an idea to add...
There is a great gem created by Sony - https://github.com/sony/v8eval. I think, it could be a good idea to use it as a runtime. Any objections/suggestions?
This is a small hack, that fixes incorrect behaviour in #377. The problem, as I see it, is that `Virtus::Attribute::Boolean` has only `TrueClass` as a primitive. This makes `Virtus::TypeLookup` to...