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
activesupport (3.0.9) lib/active_support/whiny_nil.rb:48:in `method_missing' | |
mongoid (2.2.0) lib/mongoid/fields.rb:51:in `defaults' | |
mongoid (2.2.0) lib/mongoid/attributes.rb:145:in `block in apply_default_attributes' | |
mongoid (2.2.0) lib/mongoid/attributes.rb:144:in `tap' | |
mongoid (2.2.0) lib/mongoid/attributes.rb:144:in `apply_default_attributes' | |
mongoid (2.2.0) lib/mongoid/document.rb:129:in `block in initialize' | |
mongoid (2.2.0) lib/mongoid/relations/builders.rb:47:in `building' | |
mongoid (2.2.0) lib/mongoid/document.rb:127:in `initialize' | |
app/controllers/listings_controller.rb:13:in `new' | |
app/controllers/listings_controller.rb:13:in `new' |
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
NoMethodError in ListingsController#new | |
undefined method `defaults' for nil:NilClass | |
Rails.root: /Users/derek/mdm | |
Application Trace | Framework Trace | Full Trace | |
app/controllers/listings_controller.rb:13:in `new' | |
app/controllers/listings_controller.rb:13:in `new' |
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
╰─$ rspec spec/mailers 1 ↵ | |
.F | |
Failures: | |
1) UserMailer Invite Emails should contain a link to the signup portal | |
Failure/Error: @email.should have_body_text(/#{signup_organization_url}/) | |
ActionController::RoutingError: | |
No route matches {:action=>"signup", :controller=>"organizations"} | |
# ./spec/mailers/user_mailer_spec.rb:21:in `block (3 levels) in <top (required)>' |
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
<p>Welcome to the Career Page of Sarasota Orthopedic Associates. Sarasota Orthopedic Associates is always looking for talented, professional, skilled and motivated individuals to join our staff. Below are the current opportunities with SOA. We look forward to hearing from all qualified candidates.</p> | |
<p><strong>Patient Advocate</strong></p> | |
<p><strong>Status:</strong> Full Time</p> | |
<p><a title="Download Employment Application" href="../whitepaper/employment_application.doc" target="_blank">Download Application</a></p> | |
<p><strong>SCOPE OF POSITION</strong></p> | |
<p><strong></strong>The Patient Advocate is responsible for the collection of delinquent patient balances (including self-payments, co-pays, deductibles and co-insurance), transmitting patient statements and responding to patient inquiries regarding balances due.</p> | |
<p><strong>OPERATIONAL RESPONSIBILITIES</strong></p> | |
<ol> | |
<li>Transmits and prints statements on a daily/weekly basis according to established protocol.</li> | |
<li>Answers all patient telepho |
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
if ($(".contentRow .contents .calendar:not(.fc)").length > 0) { | |
$('.contentRow .calendar').fullCalendar({ | |
// see http://arshaw.com/fullcalendar/docs | |
// for details. | |
events: '/events.json', | |
eventRender: function(event, element) { | |
console.log(event) | |
element.html("<a class=\"descReadMore\" href=\"events/\" + event.id></a>"); | |
}, | |
viewDisplay: clearDayHighlights, |
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 type="text/javascript"> | |
// Convert divs to queue widgets when the DOM is ready | |
<% if !current_user.blank? %> | |
<% if current_user.is_dealer? || current_user.admin? %> | |
var image_limit = "10"; | |
<% else %> | |
var image_limit = "<%= @product.product_vehicle_listing_detail.photos %>"; | |
<% end %> | |
<% else %> | |
var image_limit = "<%= @product.product_vehicle_listing_detail.photos %>"; |
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
namespace :import do | |
desc "Find CSV files in a specified directory and import their rows as vehicle listings" | |
task :listings => :environment do | |
Admin.new(..) | |
end | |
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
MyApp::Application.configure do | |
silence_warnings do | |
begin | |
require 'pry' | |
IRB = Pry | |
rescue LoadError | |
end | |
end | |
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
%li{:id => "task_#{task.id}", :class => "task"} | |
%span.handle= image_tag('arrow_ns.png') | |
= task.description | |
= link_to image_tag('cross.png'), project_task_path(task.project, task), :confirm => 'Destroy Task ?', :method => :delete, :remote => true | |
= link_to image_tag('accept.png'), complete_task_path(task.project, task), :method => :post, :remote => true |
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
# Show full error reports and disable caching | |
config.consider_all_requests_local = true | |
config.action_view.debug_rjs = true | |
config.action_controller.perform_caching = false |