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
Show hidden characters
{ | |
"color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme", | |
"draw_minimap_border": true, | |
"draw_white_space": "all", | |
"ensure_newline_at_eof_on_save": true, | |
"highlight_line": true, | |
"ignored_packages": | |
[ | |
"Vintage" | |
], |
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
// A fix for the ember chrome extension so that we can peek into the data store | |
// see https://github.com/stefanpenner/ember-app-kit/issues/263#issuecomment-28482992 | |
/* global require */ | |
export default DS.DebugAdapter.reopen({ | |
getModelTypes: function() { | |
var self = this; | |
return Ember.keys(requirejs._eak_seen).filter(function(key) { | |
return !!key.match(/^appkit\/models\//) && self.detect(require(key)['default']); |
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
sessionInvalidationSucceeded: function() { | |
this.transitionTo(Ember.SimpleAuth.routeAfterInvalidation); | |
// unload all store data on logout | |
var store = this.container.lookup('store:main'); | |
var typeMaps = store.get('typeMaps'); | |
Ember.keys(typeMaps).forEach(function(type) { | |
var key = typeMaps[type].type; | |
store.unloadAll(key); |
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
var get = Ember.get; | |
DS.Model.reopen({ | |
validate: function() { | |
if (get(this, 'isDeleted')) { | |
return; | |
} | |
get(this, 'validators').forEach(function(validator) { | |
validator.fn.call(this, validator.meta.key(this.constructor), get(this, validator.attribute), validator.options); | |
}, this); |
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
var get = Ember.get; | |
DS.Model.reopen({ | |
validate: function() { | |
if (get(this, 'isDeleted')) { | |
return; | |
} | |
get(this, 'validators').forEach(function(validator) { | |
validator.fn.call(this, validator.meta.key(this.constructor), get(this, validator.attribute), validator.options); | |
}, this); |
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
require 'tests/support/test_helper' | |
describe "Ember Application", -> | |
application = null | |
beforeEach (done) -> | |
Ember.$("body").append "<div id='app'></div>" | |
Ember.run -> | |
application = Em.Application.create(rootElement: "#app", autoinit: false) |
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
Xcode | |
Oh My ZSH | |
RVM | |
Janus | |
Homebrew | |
MacVim | |
KeyRemap4MacBook |
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
Computer Hardware | |
KVM Switcher | |
4-port DualView Mini DisplayPort KVMP Switch with Peripheral Sharing | |
http://www.iogear.com/press/presskit/ces2012/GCS1924/GCS1924_Datasheet.pdf | |
DP to MDP Cable | |
Mini Displayport Female to Displayport Male Adapter Cable | |
http://estore.circuitassembly.com/products/Mini-Displayport-Female-to-Displayport-Male-Adapter-Cable.html | |
http://www.displayport.org/faq/ |
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
Ember.js API Docs | |
http://ember-docs.herokuapp.com/ | |
Advanced Ember.js Bindings | |
http://code418.com/blog/2012/03/26/advanced-emberjs-bindings/ | |
Ember.js observables. So you like to watch! | |
http://www.andymatthews.net/read/2012/03/27/Ember.js-observables.-So-you-like-to-watch! | |
Ember.js Live Collections |
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
Loading ["spec"] | |
***************************************************************** | |
DEPRECATION WARNING: you are using a deprecated constant that will | |
be removed from a future version of RSpec. | |
/Users/codeofficer/.rvm/gems/ruby-1.9.3-p125@worldbrain/gems/activesupport-3.2.1/lib/active_support/dependencies.rb:251:in `require' | |
* Rspec is deprecated. | |
* RSpec is the new top-level module in RSpec-2 | |
***************************************************************** |