Sha256: 7dd63535e86d17fcf01931b5eacd5dc8382c2e5f750d9986337920c0599b9680

Contents?: true

Size: 1.35 KB

Versions: 11

Compression:

Stored size: 1.35 KB

Contents

== Welcome to Active Salesforce

  ActiveSalesforce is an extension to the Rails Framework that allows for the dynamic creation and management of 
  ActiveRecord objects through the use of Salesforce meta-data and uses a Salesforce.com organization as the backing store.


== Getting started

1. gem install activesalesforce
2. if you have not already done so generate your initial rails app using "rails <myappname goes here>" 
3. edit config/environment.rb and add "require_gem 'activesalesforce'" to the end of the "Rails::Initializer.run do |config|" block, e.g.

		Rails::Initializer.run do |config|
		  ...
		  
		  require_gem 'activesalesforce'
		end

4. edit database.yml

		adapter: salesforce
  		url: <salesforce api server url goes here>
  		username: <salesforce user name goes here>
  		password: <salesforce password goes here>
  		
5. proceed using standard Rails development techniques!  	

NOTE: To use a custom object append the word Custom to the name of the object instead of __c, e.g. FlipflapOnTheDuckmill would be FlipflapOnTheDuckmillCustom 	

== Description of contents

lib
  Application specific libraries. Basically, any kind of custom code that doesn't
  belong under controllers, models, or helpers. This directory is in the load path.
  
script
  Helper scripts for automation and generation.

test
  Unit and functional tests along with fixtures.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
activesalesforce-0.1.0 README
activesalesforce-0.0.9 README
activesalesforce-0.1.1 README
activesalesforce-0.1.2 README
activesalesforce-0.1.7 README
activesalesforce-0.1.9 README
activesalesforce-0.1.3 README
activesalesforce-0.1.4 README
activesalesforce-0.1.6 README
activesalesforce-0.1.8 README
activesalesforce-0.1.5 README