activesalesforce 0.3.7 → 0.3.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/asf_adapter.rb +1 -1
- data/lib/rforce.rb +1 -1
- metadata +3 -3
data/lib/asf_adapter.rb
CHANGED
@@ -118,7 +118,7 @@ module ActiveRecord
|
|
118
118
|
MAX_BOXCAR_SIZE = 200
|
119
119
|
|
120
120
|
attr_accessor :batch_size
|
121
|
-
attr_reader :entity_def_map
|
121
|
+
attr_reader :entity_def_map, :config
|
122
122
|
|
123
123
|
def initialize(connection, logger, connection_options, config)
|
124
124
|
super(connection, logger)
|
data/lib/rforce.rb
CHANGED
@@ -128,7 +128,7 @@ module RForce
|
|
128
128
|
#Implements the connection to the SalesForce server.
|
129
129
|
class Binding
|
130
130
|
DEFAULT_BATCH_SIZE = 10
|
131
|
-
attr_accessor :batch_size
|
131
|
+
attr_accessor :batch_size, :url
|
132
132
|
|
133
133
|
#Fill in the guts of this typical SOAP envelope
|
134
134
|
#with the session ID and the body of the SOAP request.
|
metadata
CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.8.11
|
|
3
3
|
specification_version: 1
|
4
4
|
name: activesalesforce
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.3.
|
7
|
-
date: 2006-02-
|
6
|
+
version: 0.3.8
|
7
|
+
date: 2006-02-28 00:00:00 -05:00
|
8
8
|
summary: ActiveSalesforce (ASF) is a Rails connection adapter that provides direct access to Salesforce.com hosted data and metadata via the ActiveRecord model layer. Objects, fields, and relationships are all auto surfaced as active record attributes and rels.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -98,5 +98,5 @@ dependencies:
|
|
98
98
|
requirements:
|
99
99
|
- - ">="
|
100
100
|
- !ruby/object:Gem::Version
|
101
|
-
version: 0.0.
|
101
|
+
version: 0.0.8
|
102
102
|
version:
|