Allows easy integration with marketo from ruby. You can synchronize leads and fetch them back by email. based on the SOAP wsdl file: <i>http://app.marketo.com/soap/mktows/1_4?WSDL</i> Usage: client = Rapleaf::Marketo.new_client(<access_key>, <secret_key>) get_lead_by_email: lead_record = client.get_lead_by_email('sombody@examnple.com') puts lead_record.idnum puts lead_record.get_attribute('FirstName') puts lead_record.get_attribute('LastName') sync_lead (update) lead_record = client.sync_lead('example@rapleaf.com', 'Joe', 'Smith', 'Company 1', '415 911') etc. . .