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
--trace 2.1.2@ymstaging | |
rvm 1.26.3 (master) by Wayne E. Seguin <[email protected]>, Michal Papis <[email protected]> [https://rvm.io/] | |
+ 1417639318.547792416 /scripts/cli : __rvm_parse_args() 793 > [[ -z use ]] | |
+ 1417639318.549948360 /scripts/cli : __rvm_parse_args() 796 > [[ error == \u\s\e ]] | |
+ 1417639318.551905616 /scripts/cli : __rvm_parse_args() 796 > [[ 0 -eq 1 ]] | |
+ 1417639318.553868565 /scripts/cli : __rvm_parse_args() 796 > [[ -n '' ]] | |
+ 1417639318.555869748 /scripts/cli : __rvm_parse_args() 82 > [[ -n 2.1.2@ymstaging ]] | |
+ 1417639318.557795781 /scripts/cli : __rvm_parse_args() 84 > rvm_token=2.1.2@ymstaging | |
+ 1417639318.559947758 /scripts/cli : __rvm_parse_args() 86 > (( 0 > 0 )) | |
+ 1417639318.561836855 /scripts/cli : __rvm_parse_args() 91 > next_token= |
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
Invalid request: HTTP element QUERY_STRING is longer than the (1024 * 10) allowed length. | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/thin-1.6.2/lib/thin/request.rb:84:in `execute' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/thin-1.6.2/lib/thin/request.rb:84:in `parse' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/thin-1.6.2/lib/thin/connection.rb:39:in `receive_data' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/eventmachine-1.0.3/lib/eventmachine.rb:187:in `run_machine' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/eventmachine-1.0.3/lib/eventmachine.rb:187:in `run' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/thin-1.6.2/lib/thin/backends/base.rb:73:in `start' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/thin-1.6.2/lib/thin/server.rb:162:in `start' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/rack-1.5.2/lib/rack/handler/thin.rb:16:in `run' | |
/Users/andrewritchie/.rvm/gems/ruby-2.1.0@AOR/gems/rack-1.5.2/lib/rack/server.rb:264:in `start' |
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
/*global jQuery */ | |
module("Ember.meta"); | |
// test fix for https://github.com/emberjs/ember.js/issues/1884 | |
test("should not set META_KEY on destroyed objects", function() { | |
var obj = Ember.Object.create({}); | |
ok(!Ember.meta(obj).bar, "precond - bar property on meta does not exist"); | |
obj.destroy(); |