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
Soho:Book jathayde$ rake book.pdf | |
(in /Users/jathayde/Sites/warv/Book) | |
<"book.pml" ruby "/Users/jathayde/Sites/warv/PPStuff/util/bin/preprocess/includer.rb" | ruby "/Users/jathayde/Sites/warv/PPStuff/util/bin/preprocess/embedcode.rb" --embed-skip-leading 'code/' >"book.xml" | |
Including: Bibliography.pml | |
Including: Introduction.pml | |
Including: Changes.pml | |
/usr/local/bin/ruby "/Users/jathayde/Sites/warv/PPStuff/util/bin/xmllint_fe.rb" xmllint --noout --valid "book.xml" | |
xsltproc "/Users/jathayde/Sites/warv/Book/local/xml/ppb2latex.xsl" book.xml >book.tex | |
TEXINPUTS=.:local/tex:../PPStuff/util/tex/BOOK:../PPStuff/util/tex::../PPStuff/bibliography:../PPStuff/sales_blurb </dev/null latex book | ruby "/Users/jathayde/Sites/warv/PPStuff/util/bin/tidyop.rb" --quiet | |
This is pdfTeX, Version 3.1415926-1.40.11 (TeX Live 2010) |
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
ActiveRecord::UnknownAttributeError in ComponentsController#create | |
unknown attribute: _destroy | |
RAILS_ROOT: /Users/jathayde/Sites/optoro/inventory | |
Application Trace | Framework Trace | Full Trace | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.3.8/lib/active_record/base.rb:2906:in `assign_attributes' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.3.8/lib/active_record/base.rb:2902:in `each' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.3.8/lib/active_record/base.rb:2902:in `assign_attributes' | |
/Library/Ruby/Gems/1.8/gems/activerecord-2.3.8/lib/active_record/base.rb:2775:in `attributes=' |
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
<h2>This item has been marked as</h2> | |
<p class="unit-status"><%= unit.status.humanize %></p> | |
<!-- PDI - What is this code?! --> | |
<ul> | |
<li> | |
<img src="" alt="" /> | |
</li> | |
<li> | |
<ul> | |
<li><%= unit.product.title if unit.product %></li> |
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
input[type='text'] { | |
borer: 1px solid #ccc; | |
padding: 2px; | |
} |
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
<% @unit.unit_client_scans.each do |client_scan| %> | |
• <%= client_scan.value %><br /> | |
<% end %> |
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
# Create a primary member | |
@levine = Member.create!(:firstname => "Richard", | |
:lastname => "Levine", | |
:member_type => "", | |
:email => "[email protected]", | |
:homephone => "(301)469-0485", | |
:workphone => "(301)529-2586", | |
:cellphone => "(301)529-2586", | |
:alt_email => "[email protected]", | |
:address => "12214 Greenbriar Branch Drive", |
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
# Create a primary member | |
@lastname = Member.create!(:firstname => "", | |
:lastname => "", | |
:id => 1, | |
:member_type => "", | |
:email => "", | |
:homephone => "", | |
:workphone => "", | |
:cellphone => "", | |
:alt_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
Soho:snack-bar jathayde$ rake db:seed --trace | |
(in /Users/jathayde/Sites/snack-bar) | |
** Invoke db:seed (first_time) | |
** Invoke environment (first_time) | |
** Execute environment | |
** Execute db:seed | |
"Created 3 roles" | |
"Created 3 users with roles" | |
rake aborted! | |
undefined method `name' for nil:NilClass |
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
SyntaxError in RegistrationsController#create | |
/Users/jathayde/Sites/snack-bar/app/models/registration_mailer.rb:8: syntax error, unexpected tASSOC, expecting '}' | |
body { :account => account } | |
^ | |
/Users/jathayde/Sites/snack-bar/app/models/registration_mailer.rb:16: syntax error, unexpected tASSOC, expecting '}' | |
body { :account => account, :login_url => new_us... | |
^ | |
/Users/jathayde/Sites/snack-bar/app/models/registration_mailer.rb:16: syntax error, unexpected tASSOC, expecting tCOLON2 or '[' or '.' | |
...ount => account, :login_url => new_user_session_url } |
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
<script src="javascripts/jquery-1.4.2.min.js" type="text/javascript"></script> | |
<script src="javascripts/application.js" type="text/javascript"></script> | |
<script type="text/javascript" charset="utf-8"> | |
$(function() { | |
$('#thumb1').click(function() { | |
$('#feature').attr('src', 'images/feature1.jpg'); | |
}); | |
$('#thumb2').click(function() { | |
$('#feature').attr('src', 'images/feature2.jpg'); |