Sha256: 31e0e5675602c7d2d2801913d3b306b43751c0e4268d675fea93e3d433a1e6df
Contents?: true
Size: 1.21 KB
Versions: 18
Compression:
Stored size: 1.21 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: activesalesforce url: https://www.salesforce.com/services/Soap/u/7.0 username: <salesforce user name goes here> password: <salesforce password goes here> 5. proceed using standard Rails development techniques! == 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
18 entries across 18 versions & 1 rubygems