Sha256: afad9e56bf0420885607023e27397e0aab5a5b02d3cf86c9c574d8de1b495ef2
Contents?: true
Size: 523 Bytes
Versions: 2
Compression:
Stored size: 523 Bytes
Contents
#!/usr/bin/env ruby # LeadTune API Ruby Gem # # http://github.com/leadtune/leadtune-ruby # Eric Wollesen (mailto:devs@leadtune.com) # Copyright 2010 LeadTune LLC require "rubygems" require "pp" require File.join(File.dirname(__FILE__), "../lib/leadtune") begin p = Leadtune::Prospect.delete do |p| p.organization = "LOL" p.api_key = "h5fvNoTFa9AqzxUgixNcGey7HfZNKiBE9pC39fIH" p.leadtune_host = "http://localhost:8080" p.prospect_id = ARGV[0] end rescue Leadtune::LeadtuneError => e puts e.to_s end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
leadtune-0.0.9 | spec/delete.rb |
leadtune-0.0.8 | spec/delete.rb |