Sha256: bc467cef89f4a4f6efd5444a539f3b49a94ede69a08b614c3ac41601aeb0591f
Contents?: true
Size: 1.19 KB
Versions: 5
Compression:
Stored size: 1.19 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! == 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
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
activesalesforce-0.0.4 | README |
activesalesforce-0.0.5 | README |
activesalesforce-0.0.6 | README |
activesalesforce-0.0.7 | README |
activesalesforce-0.0.8 | README |