This file contains 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
== podfiles: 30 == | |
SDWebImage: 11 | |
AFNetworking: 8 | |
RestKit: 8 | |
HockeySDK: 8 | |
BlocksKit: 7 | |
CocoaLumberjack: 6 | |
MBProgressHUD: 6 | |
TTTAttributedLabel: 5 |
This file contains 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
enum ProtocolMessage : Printable, Equatable { | |
case Keepalive | |
case Hello(pubkey: NSData, password: String) | |
case Send(encodedMessage: NSData, toPubkey: NSData) | |
case HelloResponse | |
case Message(encodedMessage: NSData, fromPubkey: NSData) | |
var description: String { | |
get { | |
switch self { |
This file contains 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
//src | |
var filmToActor = g.Morphism().Out("/film/film/starring").Out("/film/performance/actor") | |
g.V().Has("name", "Casablanca").Save("name", "source").Follow(filmToActor).Tag("target").All() | |
//Output (note the different "source" values in first and remaining records): | |
{ | |
"result": [ | |
{ |
OlderNewer