Skip to content

Instantly share code, notes, and snippets.

View robert-waggott's full-sized avatar

Robert Waggott robert-waggott

  • United Kingdom
View GitHub Profile
@robert-waggott
robert-waggott / info.json
Created May 19, 2020 13:47
TileJSON.io - Test
{
"baseLayer": {
"tilejson": "2.2.0",
"name": "base",
"version": "1.0.0",
"scheme": "xyz",
"tiles": [
"https://a.tile.openstreetmap.org/{z}/{x}/{y}.png"
]
},
@robert-waggott
robert-waggott / gist:ec14456d5e04b526b9e9
Created October 7, 2015 13:45
Running Machine.Spec tests from grunt
module.exports = function(grunt) {
grunt.initConfig({
shell: {
runUnitTests: {
command: "mono packages/Machine.Specifications.Runner.Console.0.9.2/tools/mspec.exe {Your Unit tests dll}"
}
},
watch: {
dlls: {
@robert-waggott
robert-waggott / Xamarin Insights grunt script.js
Last active August 29, 2015 14:25
Xamarin Insights grunt script
module.exports = function(grunt) {
grunt.initConfig({
shell: {
zipDYSM: {
command: [
'zip',
'-r',
'{PATH_TO_YOUR_BIN_FOLDER}/bin/iPhone/Debug/{APP_NAME}.app.dSYM.zip',
'{PATH_TO_YOUR_BIN_FOLDER}/bin/iPhone/Debug/{APP_NAME}.app.dSYM',
].join(' '),
module.exports = function(grunt) {
grunt.initConfig({
adminPassword: '',
solution: '',
versionNumber: grunt.option('versionNumber'),
buildAgent: grunt.option('buildAgent'),