This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
commit a7bd92d1e8cf39ed1831324636db742eb07df8ac
tree b1201d72cce219687abe1f5ac548a1e4d2d5b627
parent a7c22d4ab214e153a23cd21ec6f5ef8ebc61e776
tree b1201d72cce219687abe1f5ac548a1e4d2d5b627
parent a7c22d4ab214e153a23cd21ec6f5ef8ebc61e776
dm-adapters / salesforce / README.markdown
dm-salesforce
A gem that provides a Salesforce Adapter for DataMapper.
The URI for a Salesforce repository is:
salesforce://username:password@salesforce.wsdl # relative wsdl path
salesforce://username:password@/etc/salesforce.wsdl # absolute wsdl path
The wsdl is converted into Ruby classes and stored in ~/.salesforce. This automatically happens the first time you use the salesforce adapter, so you don’t need to worry about generating Ruby code. It just works.
An example of using the adapter:
class Account
include DataMapper::Resource
property :id, String, :key => true
property :name, String
property :description, String
property :billing_city, String
property :billing_postal_code, String
property :billing_country, String
property :billing_state, String
property :billing_street, String
property :fax, String
property :phone, String
property :type, String
property :website, String
has n, :contacts
end
class Contact
include DataMapper::Resource
property :id, String, :key => true
property :title, String
property :email, String
property :first_name, String
property :last_name, String
property :home_phone, String
property :mobile_phone, String
property :phone, String
belongs_to :account
end
You can then do Contact.all("account.name.like" => "%ruby%"), which will get a list of all contacts whose associated account’s name is like %ruby%.





