This tutorial teaches you to create a plugin for D3 using D3’s new 4.0 module pattern. Although the word plugin suggests extending core functionality, this…
Author: paul
This article was peer reviewed by Nilson Jacques, Chris Perry and Thomas Greco. Thanks to all of SitePoint’s peer reviewers for making SitePoint content the…
A Drupal Dev Workflow for everyone: git flow, or just your flow | Acquia.
I was getting this error with Rails 2.2 when using ActionMailer. NoMethodError (undefined method `finder’ for #<ActionView::Base:0x34146fc>) It stems from a line in engines/lib/engines/rails_extensions/action_mailer.rb This…
After slogging through connecting Rails and Sugar via SOAP, I was tired and frustrated. The API is slow, and doing anything meaningful took a long…
I have long wanted to make sure my CRM system (SugarCRM) and my project management system synchonized certain data, mainly company names. I hate having…
This is another one that should have been obvious. But, I was getting it wrong. Maybe it had something to do with upgrading to Rails…
I don’t know why this took a while to figure out, but it did. If you are using the stock Rails in_place_editor_field, you know it…
It took me a little while, but I finally got this working. You’ll need the iCalendar plugin. require ‘icalendar’ def view_ical  request = Net::HTTP::Get.new(‘/calendars/calendar.ics’) …
Nested resources in Ruby on Rails are sort of neat, but they are a pain to implement. What’s more, I have to ask myself, why…