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
curl -H "Origin: http://tobe-staging.herokuapp.com" http://tobe-staging.storage.googleapis.com/a43259256806cd017d6b2181fa5ad929509787ad-ajc2F9gAYnYvng.gif -s -D - -o /dev/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
routeChanged: (-> | |
Em.run.next -> | |
path = window.location.pathname | |
window._gaq.push(['_trackPageview', path]) | |
).observes('currentPath') |
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
# NON-POLY | |
LibraryElement | |
# has what attrs? | |
belongs_to :animated_component, class_name: 'Component' | |
belongs_to :photo_component, class_name: 'Component' | |
belongs_to :audio_component, class_name: 'Component' | |
belongs_to :embedded_html_component | |
belongs_to :stencil_description |
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
// Version: v1.0.0-pre.4-36-g0d78336 | |
// Last commit: 0d78336 (2013-01-25 09:21:59 -0800) | |
(function() { | |
/*global __fail__*/ | |
/** | |
Ember Debug |
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
commit 3fb6fb00626201fd096b2d8313178e393e0b5903 | |
Author: Matthew Beale <[email protected]> | |
Date: Fri Jan 25 14:15:57 2013 -0500 | |
Add tests for #1866 - loc helper | |
diff --git a/packages/ember-handlebars/lib/helpers/loc.js b/packages/ember-handlebars/lib/helpers/loc.js | |
index d2d1f8b..7b023f5 100644 | |
--- a/packages/ember-handlebars/lib/helpers/loc.js | |
+++ b/packages/ember-handlebars/lib/helpers/loc.js |
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
(function() { | |
window.DS = Ember.Namespace.create({ | |
// this one goes to 11 | |
CURRENT_API_REVISION: 11 | |
}); | |
})(); | |
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
(function() { | |
window.DS = Ember.Namespace.create({ | |
CURRENT_API_REVISION: 10 | |
}); | |
})(); | |
(function() { |
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
$ depdep deploy | |
-- Before Deployment -- | |
REV 23d23f2f23f23f2 | |
Last deploy by Iago <[email protected]> at 2011-12-03 13:42:34 | |
Deployment is not locked | |
-- Deploying Site -- | |
Local REV is 12312412412412 | |
Running predeploy hooks... | |
Locking for deployment... |
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
Host gitolite-admin-account | |
HostName localhost | |
User matthewbeale | |
Port 22 | |
IdentityFile ~/.ssh/matthewbeale |
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
@function mycompact($one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten) { | |
$originalList: $one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten; | |
$compactList: (); | |
@each $item in $one, $two, $three, $four, $five, $six, $seven, $eight, $nine, $ten { | |
@if $item != false { | |
append $compactList, $item; | |
} | |
} | |
@return( $compactList ); | |
} |