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
help: jitsu deploy | |
help: jitsu apps deploy | |
help: | |
error: Error running command deploy | |
info: Nodejitsu not ok |
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
{ | |
"stack": "Error: Nodejitsu Error (404): Item not found\n at Request._callback (/usr/local/node/lib/node_modules/jitsu/node_modules/nodejitsu-api/lib/client/client.js:94:15)\n at Request.callback (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:104:22)\n at Request.<anonymous> (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:458:18)\n at Request.emit (events.js:64:17)\n at IncomingMessage.<anonymous> (/usr/local/node/lib/node_modules/jitsu/node_modules/request/main.js:423:16)\n at IncomingMessage.emit (events.js:81:20)\n at HTTPParser.onMessageComplete (http.js:133:23)\n at Socket.ondata (http.js:1213:22)\n at Socket._onReadable (net.js:681:27)\n at IOWatcher.onReadable [as callback] (net.js:177:10)", | |
"message": "Nodejitsu Error (404): Item not found", | |
"statusCode": "404", | |
"result": { | |
"error": "request not found" | |
} | |
} |
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
Mango.IssuesCollectionView = SC.View.extend({ | |
reuseQueue: [], | |
backView: null, | |
content: null, | |
itemViewClass: SC.View, | |
topRowIndex: null, |
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
ControlledView = SC.Mixin.create({ | |
isInsertedElement: false, | |
didInsertElement: function(){ | |
set(this, 'isInsertedElement', true); | |
} | |
}); |
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
ItemView = SC.View.extend({ | |
//classNameBindings: ['selected'], | |
classNameBindings: ['disabled'], | |
// applyViewLogic is not delegates to observes because ItemView is handled by CollectionView | |
init: function(){ | |
this._super(); | |
this._applyViewLogic(); | |
}, |
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" | |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | |
<title>QUnit Test Runner</title> | |
<link rel="stylesheet" type="text/css" href="assets/qunit/qunit_styles.css" /> | |
<link rel="stylesheet" type="text/css" href="assets/bpm_styles.css" /> | |
</head> | |
<body> |
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
[email protected] /Users/pepe/Git/playlist-room | |
├── [email protected] | |
├── [email protected] | |
├─┬ [email protected] | |
│ ├── UNMET DEPENDENCY connect 1.8.x | |
│ ├── UNMET DEPENDENCY mime >= 0.0.1 | |
│ ├── UNMET DEPENDENCY mkdirp 0.0.7 | |
│ └── UNMET DEPENDENCY qs >= 0.3.1 | |
├── [email protected] | |
├── [email protected] |
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
input "app" | |
output "assets" | |
match "**/*.css" do | |
filter ConcatFilter, "bpm_styles.css" | |
end | |
match "**/amber.js/packages/*/lib/**/*.js" do |
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
node-make-asset-pipeline$ npm publish -f . | |
npm WARN publish Forced publish over [email protected] | |
npm ERR! Failed to update the data | |
npm ERR! publish fail Cannot publish over existing version. | |
npm ERR! publish fail Bump the 'version' field, set the --force flag, or | |
npm ERR! publish fail npm unpublish '[email protected]' | |
npm ERR! publish fail and try again | |
npm ERR! | |
npm ERR! System Darwin 10.8.0 | |
npm ERR! command "node" "/Users/pepe/.nvm/v0.4.7/bin/npm" "publish" "-f" "." |
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
<script type="text/x-handlebars"> | |
{{#collection App.ListView elementId="firstView" }} | |
{{content.name}} | |
{{/collection}} | |
</script> | |
<script type="text/x-handlebars"> | |
{{#view App.ListView2 }} | |
{{/view}} | |
</script> |