Jon Black

Results 23 issues of Jon Black

The `changed?` method returns true if and only if `update_type` is not equal to `:no_change`: ``` def changed? if update_type == :no_change false else true end end ``` However, `update_type`...

The ember `click` helper doesn't work with buttons. For example, the following button: ``` {{#md-button class="md-raised md-primary" type="submit"}} Log In {{/md-button}} ``` ...and the following test... ``` click('button[type="submit"]'); ``` ...produce...

I'm using an UNO and get the following: ``` AVR Memory Usage ---------------- Device: atmega328p Program: 47702 bytes (145.6% Full) (.text + .data + .bootloader) Data: 1199 bytes (58.5% Full)...

AVR

The rules used by the registry check command that validates the contents of the resource files are currently hard coded. I would like to add custom checks to ensure that...

When PubSub notifications are enabled and the `registry-events` topic already exists in the given project, the registry server fails to startup with the following error: >FATAL[0001] Failed to create registry...

Given the following Spec resource in the file resource.yaml: ```yaml apiVersion: apigeeregistry/v1 items: - apiVersion: apigeeregistry/v1 kind: Spec metadata: name: reg-supplier parent: apis/reg-supplier/versions/1.0.0 data: filename: regsupplier-app/target/openapi.json ``` It's successfully published...

This is related to #20. The command line tool for mida doesn't correctly parse https urls, resulting in the failure to create an absolute url for images. This pr fixes...

With the following HTML saved to `example_schema`: ``` ``` Running `mida example_schema` returns: ``` :type: http://schema.org/Product :properties: image: - '' ``` This is with mida 0.4.0.

I've written a backend server that uses the 'Resource Owner Password Credentials' grant type. In short, the user requests a token in exchange for their username and password, and that...

The example code doesn't show how to remove a document, something that I've been having trouble with. Moreover, the documentation doesn't cover it, and there is no unit test either.