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 Etl < ProcessCommand | |
def initialize(params) | |
# init if required | |
end | |
def call! | |
# call dangerous thing here | |
end | |
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
/Users/proxygear/.rvm/gems/ruby-2.0.0-p353/bin/ruby_executable_hooks: [BUG] Bus Error | |
ruby 2.0.0p353 (2013-11-22 revision 43784) [x86_64-darwin12.0.0] | |
-- Crash Report log information -------------------------------------------- | |
See Crash Report log file under the one of following: | |
* ~/Library/Logs/CrashReporter | |
* /Library/Logs/CrashReporter | |
* ~/Library/Logs/DiagnosticReports | |
* /Library/Logs/DiagnosticReports | |
the more detail of. |
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
ES.module 'Views', (Views, App, Backbone, Marionette, $, _)-> | |
class Views.Select extends Marionette.ItemView | |
template: JST['select'] | |
ui: | |
select: 'select' | |
events: | |
'change select': 'selected' | |
initialize: (options)-> | |
@listenTo @model, 'reset', this.display, this | |
@selected = options.selected |