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
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on April 12, 2013 03:07:05 PM America/New_York */ | |
@font-face { | |
font-family: 'SourceSansProExtraLight'; | |
src: url('SourceSansPro-ExtraLight-webfont.eot'); | |
src: url('SourceSansPro-ExtraLight-webfont.eot?#iefix') format('embedded-opentype'), | |
url('SourceSansPro-ExtraLight-webfont.woff') format('woff'), | |
url('SourceSansPro-ExtraLight-webfont.ttf') format('truetype'), |
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
============================ | |
Building JS API files | |
============================ | |
Creating JS API for usd | |
Creating JS API for jpy | |
rake aborted! | |
"\xC2" on US-ASCII | |
(in /Users/markupboy/Dropbox/Sites/bigcartel/javascript-api/javascripts/format.js.coffee.erb) | |
/Users/markupboy/Dropbox/Sites/bigcartel/javascript-api/builder.rb:10:in `build' | |
/Users/markupboy/Dropbox/Sites/bigcartel/javascript-api/Rakefile:19:in `block (2 levels) in <top (required)>' |
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
* 2013-03-04 10:40:41 executing `deploy' | |
* 2013-03-04 10:40:41 executing `deploy:update' | |
** transaction: start | |
* 2013-03-04 10:40:41 executing `deploy:update_code' | |
updating the cached checkout on all servers | |
executing locally: "git ls-remote [email protected]:bigcartel/blake.git HEAD" | |
command finished in 3479ms | |
* executing "if [ -d /home/rails/apps/blake/shared/cached-copy ]; then cd /home/rails/apps/blake/shared/cached-copy && git fetch -q origin && git fetch --tags -q origin && git reset -q --hard 89c242755051884f5ed5b44d75e6436ba06eaad3 && git clean -q -d -x -f; else git clone -q [email protected]:bigcartel/blake.git /home/rails/apps/blake/shared/cached-copy && cd /home/rails/apps/blake/shared/cached-copy && git checkout -q -b deploy 89c242755051884f5ed5b44d75e6436ba06eaad3; fi" | |
servers: ["multi-app1.prd.v"] | |
[multi-app1.prd.v] executing command |
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
registerPane: function(index, elem) { | |
var $elem = $(elem); | |
var name = $elem.data('pane'); | |
this.panes[name] = { | |
url: $elem.prop('href'), | |
pane: $('#settings_'+name), | |
link: $elem, | |
}; | |
this.panes.length++; |
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 EmailCustomizer = window.EmailCustomizer = Class.extend({ | |
init: function(emailCustomized, _super) { | |
this._super = _super; | |
this.form = $('.settings'); | |
this.emailCustomizer = $('#customize_email'); | |
......... | |
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
Fetching gem metadata from https://rubygems.org/......... | |
Fetching gem metadata from https://rubygems.org/.. | |
Fetching git://github.com/rails/rails.git | |
remote: Counting objects: 351293, done. | |
remote: Compressing objects: 100% (88160/88160), done. | |
remote: Total 351293 (delta 272690), reused 336903 (delta 259938) | |
Receiving objects: 100% (351293/351293), 53.21 MiB | 4.12 MiB/s, done. | |
Resolving deltas: 100% (272690/272690), done. | |
Fetching git://github.com/lostisland/faraday.git | |
remote: Counting objects: 4980, done. |
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
<?php | |
if(empty($_SERVER['HTTP_X_REQUESTED_WITH'])) { | |
$config['show_profiler'] = $config['template_debugging'] = (ENV === 'local') ? 'y' : 'n'; | |
} |
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
[ | |
{ | |
"path": "events.bigcartel.deployments", | |
"name": "deployments", | |
"start": 1360079100, | |
"end": 1360082700, | |
"step": 60, | |
"data": [ | |
"None","None","None","None","None","None",1.0,"None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None","None" | |
] |
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
_.extend Backbone.View.prototype, | |
parse: (objName) -> | |
_recurse_form = (object, objName) => | |
_.each object, (v,k) -> | |
if v instanceof Object | |
object[k] = _recurse_form v, "#{objName}[#{k}_attributes]" | |
else | |
object[k] = @$("[name=#{objName}[#{k}]]").val() | |
return object |
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
class Plugin | |
constructor: (elem, options) -> | |
@elem = elem | |
@$elem = $(elem) | |
@options = options | |
@metadata = @$elem.data('plugin-options') | |
@ | |
defaults: | |
message: 'Hello world!' |