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
| require("crash-reporter").start({ | |
| productName: "Electron", | |
| companyName: "Github, Inc.", | |
| submitUrl: "http://127.0.0.1:3000/help/crashes", | |
| autoSubmit: true | |
| }); | |
| process.crash(); |
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
| import _ from "underscore"; | |
| const baseConfigData = { | |
| "shows": [ | |
| { | |
| "show_id": 200, | |
| "title": "Elevate Your Energy 2", | |
| "site_url": "https:\/\/www.spreaker-beta.com\/show\/elevate_your_energy", | |
| "image_original_url": "https:\/\/d1botjg6upurv.cloudfront.net\/images.spreaker-beta.com\/original\/3f6575306aabb45f8301c8093d58c518.jpg" |
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
| var backend_mock_timeout = function (par) { | |
| angular.module('httpBackendMock', ['ngMockE2E']) | |
| .run(function ($httpBackend) { | |
| $httpBackend.whenGET(/.*/).passThrough(); | |
| $httpBackend.whenPOST(/check-barcode/).respond(function(){ | |
| return [0,{}]; | |
| }); | |
| $httpBackend.whenPOST(/.*/).passThrough(); | |
| }); | |
| .config(["$provide",function($provide) { |
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
| exports.open = function(f) { | |
| try { | |
| Ti.Android.currentActivity.startActivity(Ti.Android.createIntent({ | |
| action : Ti.Android.ACTION_VIEW, | |
| type : 'application/pdf', | |
| data : f.getNativePath() | |
| })); | |
| f = null; | |
| } catch (err) { | |
| f = null; |
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
| LI> start --suite=timeout | |
| harness deleted | |
| harness does not exist, creating | |
| temp ios harness dir already exist | |
| harness created | |
| harness updated with template | |
| harness suites updated | |
| harness tiapp.xml updated | |
| app.js updated for harness | |
| running iOS simulator version 7.0 |
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
| /* | |
| * Appcelerator Titanium Mobile | |
| * Copyright (c) 2011-2012 by Appcelerator, Inc. All Rights Reserved. | |
| * Licensed under the terms of the Apache Public License | |
| * Please see the LICENSE included with this distribution for details. | |
| */ | |
| var suites = [ | |
| {name: "analytics"}, | |
| {name: "blob"}, |
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
| /* | |
| * Appcelerator Titanium Mobile | |
| * Copyright (c) 2011-2012 by Appcelerator, Inc. All Rights Reserved. | |
| * Licensed under the terms of the Apache Public License | |
| * Please see the LICENSE included with this distribution for details. | |
| */ | |
| module.exports = new function() { | |
| var finish; | |
| var valueOf; |
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
| var path = require("path"); | |
| module.exports = new function() { | |
| // local values | |
| /*******************************************************************************/ | |
| /* | |
| local values used for defining the required properties (IE: you can change this section to | |
| taste by adding or removing values if desired) |
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/bash | |
| DEST_IPHONE="../app/assets/iphone/images/" | |
| DEST_ANDROID="../app/assets/android/images/" | |
| if [ $# -gt 0 ] | |
| then | |
| PARAMETRO=$1 | |
| else | |
| PARAMETRO='vuoto' |
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
| task("pre:compile",function(event,logger){ | |
| /*COMPILA GLI ASSETS*/ | |
| var exec = require('child_process').exec; | |
| function puts(error, stdout, stderr) { | |
| logger.info("---- GENERAZIONE ASSETS COMPLETATA ----"); | |
| } | |
| exec("cd assets_src && ./convert.sh", puts); | |
| }); |