Gilles Dubreuil
Gilles Dubreuil
File Upload Multiple - https://www.patternfly.org/v4/components/file-upload---multiple Using the component with `customFileHandler` prop allows us to have fine control of the file to upload as we need to validate them against a...
Auto Retry option for all services Auto Retry is off by default but can be turned on with `:idempotent` option. Default values are `:retry_limit => 2` and `:retry_interval => 5`...
When a service endpoint URL is wrong in the catalog the user should be able to override it. This is actually the recommended way by Openstack API Working Group guidelines:...
`fog-openstack` is using a mixture of HTTP Accept header and adding to the URL the .json extension. A clean up needs be applied across all services. [ x ] Nova...
The various Service's Mock classes belong to the tests section, namely `test/`. For more details, please see conversation in fog-core [1]. Although the work happening in fog-core should be completely...
https://github.com/fog/fog-openstack/issues/202 worked around the broken dependencies by commenting Coveralls. Meanwhile we ultimately need to restore Coveralls or at least partially for Ruby 2.0 test cases.
Building the gem generates many open-ended and pessimistic dependency warnings. Those need to be addressed. See http://guides.rubygems.org/specification-reference/ for details
Fog-core is already supported up to version 2.1.0. - Supporting latest version of fog-core would help other projects consuming various fog providers. - The namespace need to be adjusted to...
Having two models linked by a foreign key, for instance a User{ id, name } and many Post{ id, title, content, user_id}, to express a one to many relationship, how...