## Address (object)
- street
- city
## User (Address)
- id
- login
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Feature: Root Resource | |
As an API client | |
I want to see the root resource | |
So that I have a starting point to complete my task. | |
Scenario: Request the root | |
Given an anonymous client | |
When I make a GET request to / | |
Then I should get a 200 status code | |
And the content type should be JSON |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FORMAT: 1A | |
# Test API | |
## Items [/items{?filter}] | |
### List all Items [GET] | |
+ Parameters | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical | |
* resource. | |
* @example "http://www.google.com:80/search?query=text#result" | |
* | |
* @return {Uri} | |
* @constructor | |
*/ | |
function Uri() { | |
return this; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Coast Browser</title> | |
</head> | |
<body> | |
<script src="http://127.0.0.1:8080/ua"></script> | |
<script> | |
/** | |
* @param window represents a window containing a DOM document. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// KDPersistantCache.h | |
// KDPrototype | |
// Stores NSCoding compliant objects persistantly in the NSCachesDirectory | |
// for a specified period of time. | |
// | |
// Created by on 18/04/2012. | |
// Copyright (c) 2012 __MyCompanyName__. All rights reserved. | |
// |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/deps/v8/include/v8.h b/deps/v8/include/v8.h | |
index ddde388..e886314 100644 | |
--- a/deps/v8/include/v8.h | |
+++ b/deps/v8/include/v8.h | |
@@ -323,7 +323,7 @@ template <class T> class Persistent : public Handle<T> { | |
* Creates an empty persistent handle that doesn't point to any | |
* storage cell. | |
*/ | |
- inline Persistent(); | |
+ Persistent(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
set -ue | |
curl -qO http://llvm.org/releases/3.2/llvm-3.2.src.tar.gz | |
curl -qO http://llvm.org/releases/3.2/clang-3.2.src.tar.gz | |
curl -qO http://llvm.org/releases/3.2/compiler-rt-3.2.src.tar.gz | |
tar -zxf llvm-3.2.src.tar.gz | |
tar -zxf clang-3.2.src.tar.gz | |
tar -zxf compiler-rt-3.2.src.tar.gz |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Example of HTTP API documentation format based on Apiary blueprint | |
== transport | Transport system | |
Markdown description of an entity goes here. | |
== transport/cards | Customers' cards | |
@keyword [string] Keyword of a card |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.gist .gist-file .gist-meta { | |
display: none; | |
} |
OlderNewer