Michael Oberegger

Results 11 issues of Michael Oberegger

Updates the globs for `test`, `tests`, and `spec` directories so that they will be picked up from anywhere in the project. This gets it to work identically to `__tests__`. Right...

I was just wondering if it would be possible to make the current 'percent' value available outside of the IronRouterProgress template. For one of my routes, I'd like to display...

Adds an option to allow the user to provide their Meteor settings json file to automatically configure a `METEOR_SETTINGS` environment variable on Heroku. Ex: `meteor-hero -s settings.json`

There is a useful [`mergeCss` function](https://github.com/meteor/meteor/blob/devel/packages/standard-minifier-css/plugin/minify-css.js#L65) in the [`standard-minifier-css` package](https://github.com/meteor/meteor/blob/devel/packages/standard-minifier-css) that does the following (according to the comments): > Lints CSS files and merges them into one file, fixing up...

Project:CSS
Project:Isobuild:Minifiers

Ran into an issue with `oneOf` unions, but _only_ when using a `discriminator` property. I am not sure if this is an `openapi_first` issue or a `json_schemer` issue, so I'd...

bug

Given a specification like ```ruby openapi = { 'openapi' => '3.0.1', 'components' => { 'schemas' => { 'Pets' => { 'oneOf' => [ { 'type' => 'object', 'properties' => {...

Given an Openapi definition like ```yml paths: /foo: get: parameters: - name: ids in: query style: form explode: true schema: type: array items: $ref: ../components/schemas/id.yml uniqueItems: true ``` `json_schemer` will...

bug

Given a schema like the following, the `before_property_validation` and `after_property_validation` hooks run a single time. So ```ruby obj_schema = { 'type' => 'object', 'properties' => { 'minimumDate' => { 'type'...

**What does this PR do?** Makes a small adjustment to _where_ the patch for `rails.action_controller` is applied. Originally it `prepend`ed `ActionController::Metal`, but this PR proposes to move it earlier to...

integrations
tracing

Builds on top of #597. This PR optimizes the `KeyFormatter` so that it doesn't lock the mutex on a cache hit by implementing the check-lock-check pattern, which gives us a...