Skip to content

Instantly share code, notes, and snippets.

@ivanacostarubio
Created October 13, 2009 16:40
Show Gist options
  • Save ivanacostarubio/209356 to your computer and use it in GitHub Desktop.
Save ivanacostarubio/209356 to your computer and use it in GitHub Desktop.
require 'rubygems'
require 'freshbooks'
FreshBooks::Base.establish_connection('name.freshbooks.com', 'secret')
invoices = FreshBooks::Invoice.list
begin
invoices.to_a
invoices.delete_if { |invoice| invoice.status == "paid" }
rescue Exception => m
puts m
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment