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 | |
VERSION=2.0.0-p0 | |
# Step 1. Initialize Profiles | |
if [ ! -f ~/.profile ] | |
then | |
touch ~/.profile | |
fi |
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
### Keybase proof | |
I hereby claim: | |
* I am ksylvest on github. | |
* I am ksylvest (https://keybase.io/ksylvest) on keybase. | |
* I have a public key whose fingerprint is 98A6 A9C7 FDD3 7289 DAF0 3093 FA9A 1F11 4A62 1F66 | |
To claim this, I am signing this object: |
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
LYRLayer *client = [LYRLayer new]; | |
NSString *userID = @"..."; | |
LYRLayerNonceAuthenticationChallenge nac = ^(NSString *nonce, LYRLayerNonceAuthenticationChallengeCompletion completion) { | |
// The integrator would fill make the approriate server calls here then call the completion block with a token or NULL if a problem occurred. | |
// [ get:@"/layer/authenticate" completion:^(NSDictionary *parameters){ | |
// completion(parameters["layer_identity_token"]); | |
// }]; | |
}; |
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
begin | |
require "bundler/inline" | |
rescue LoadError => e | |
$stderr.puts "Bundler version 1.10 or later is required. Please update your Bundler" | |
raise e | |
end | |
gemfile(true) do | |
source "https://rubygems.org" | |
# Activate the gem you are reporting the issue against. |