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
I ran: | |
sudo gdbattach 12345 | |
<--- replace "12345" with the actual PID | |
thread apply all bt | |
and got the following: | |
Thread 2 (Thread 0xb78bab70 (LWP 12947)): | |
#0 0x00e63424 in __kernel_vsyscall () | |
#1 0x0055e0b1 in select () from /lib/libc.so.6 |
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
I used the ruby_gbd macros found at: | |
https://github.com/pusewicz/ruby-gdb | |
then ran: | |
sudo gdb /path/to/ruby PID | |
In gdb: I attempted to run the following commands | |
session-ruby | |
redirect_stdout # redirects gdb output to /tmp/ruby-debug.PID eval "caller" # dumps backtrace | |
However when I attempted to redirect the thread output to std_out, it appeared to kill the thread, as I couldn't run veal 'caller' afterwards. |
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
(function() { | |
window.DS = Ember.Namespace.create({ | |
// this one goes to 11 | |
CURRENT_API_REVISION: 11 | |
}); | |
})(); | |
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
DS.RESTAdapter.configure('App.Opinion', { | |
sideloadsAs: 'opinions' | |
}); |
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
App.User = DS.Model.extend({ | |
name: DS.attr('string'), | |
opinions: DS.hasMany('App.Opinion') | |
}); |
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
class UserSerializer < ActiveModel::Serializer | |
attributes :id, :name | |
embed :ids, include: :true | |
has_many :opinions | |
end |
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
class User < ActiveRecord::Base | |
has_many :opinions | |
end |
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
{{#linkTo 'contact' contact tagName="tr"}} | |
<td>{{name}}</td> | |
<td><button {{action destroy contact bubbles=false}}>Destroy!</button></td> | |
<td>{{#linkTo 'somewhere else' foo}}something{{/linkTo}}</td> | |
{{/linkTo}} |
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
*.google.com | |
*.googleapis.com | |
*.gstatic.com |
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
match "templates/**/*.hbs" do | |
handlebars wrapper_proc: Barber::Ember::FilePrecompiler, :key_name_proc => ember_template_name_proc | |
end |
OlderNewer