I hereby claim:
- I am friederbluemle on github.
- I am friederbluemle (https://keybase.io/friederbluemle) on keybase.
- I have a public key ASAivIza2aMl4EHXW2pXE7TSHIghuS3AghQWN8WLqtKSPQo
To claim this, I am signing this object:
DU(1) BSD General Commands Manual DU(1) | |
NAME | |
du -- display disk usage statistics | |
SYNOPSIS | |
du [-H | -L | -P] [-a | -s | -d depth] [-c] [-h | -k | -m | -g] [-x] [-I mask] | |
[file ...] |
DU(1) User Commands DU(1) | |
NAME | |
du - estimate file space usage | |
SYNOPSIS | |
du [OPTION]... [FILE]... | |
du [OPTION]... --files0-from=F | |
DESCRIPTION |
android { | |
// ... | |
defaultConfig { | |
def gitDescribe = "git -C ${rootDir} describe --tags --long --dirty".execute().text.trim() | |
def (tag, commitsString, commitSha, dirty) = gitDescribe ? gitDescribe.tokenize('-') : [] | |
def (tagMajor, tagMinor, tagPatch) = tag ? tag.tokenize('.') : [] | |
def commits = commitsString ? commitsString.toInteger() : 0 | |
def tmpMajor = tagMajor ? tagMajor.replaceAll('^v', '') : '' | |
def major = (tmpMajor && tmpMajor.isNumber()) ? tmpMajor.toInteger() : 0 | |
def minor = (tagMinor && tagMinor.isNumber()) ? tagMinor.toInteger() : 0 |
Verifying my Blockstack ID is secured with the address 1ESjwWJe3QbFWTuqPWRXChH4DvHa2h3Tf4 https://explorer.blockstack.org/address/1ESjwWJe3QbFWTuqPWRXChH4DvHa2h3Tf4 |
I hereby claim:
To claim this, I am signing this object:
var request = require('request'); | |
var apiKey = "API_KEY"; | |
var regId = "REG_ID"; | |
var args = process.argv.slice(2); | |
if (args[0] == 'show_offers') { | |
var data = { | |
id: Math.floor(Date.now() / 1000), |
def getGitDescribe = { -> | |
return 'git describe --tags --dirty'.execute().text.trim() | |
} | |
def isSnapshotBuild = { -> | |
def hasModifiedDeletedOrOtherFiles = !'git ls-files -mdo --exclude-standard'.execute().text.trim().isEmpty() | |
def hasStagedFiles = !'git diff-index --no-ext-diff --name-only --cached HEAD'.execute().text.trim().isEmpty() | |
def hasAdditionalCommits = getGitDescribe().contains('-') | |
hasModifiedDeletedOrOtherFiles || hasStagedFiles || hasAdditionalCommits | |
} |
publishing { | |
publications { | |
maven(MavenPublication) { | |
// ... | |
// Manually add dependencies to pom until maven-publish knows how to do it | |
pom.withXml { | |
def dependenciesNode = asNode().appendNode('dependencies') | |
//Iterate over the compile dependencies (we don't want the test ones), adding a <dependency> node for each |