asf-soap-adapter 1.0.2 → 1.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.2
1
+ 1.0.4
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{asf-soap-adapter}
8
- s.version = "1.0.2"
8
+ s.version = "1.0.4"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Doug Chasman", "Luigi Montanez", "Senthil Nayagam", "Justin Ball", "Jesse Hallett", "Andrew Freeberg", "Blaine Schanfeldt", "Matte Edens", "Raymond Gao"]
12
- s.date = %q{2010-11-28}
12
+ s.date = %q{2010-12-13}
13
13
  s.description = %q{ASF-Soap-Adapter is an improved version of 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. It has been patched to V20 of the Web Services API and has support Chatter model.}
14
14
  s.email = %q{raygao2000@yahoo.com}
15
15
  s.extra_rdoc_files = [
@@ -279,8 +279,11 @@ module ActiveRecord
279
279
  if commands.length >= MAX_BOXCAR_SIZE or (previous_command and (command.verb != previous_command.verb))
280
280
  send_commands(commands)
281
281
 
282
- commands = []
283
- previous_command = nil
282
+ #Patch from Kostyl
283
+ commands = [command] # Otherwise command will be lost at all (every 200th command (MAX_BOXCAR_SIZE = 200))
284
+ previous_command = command
285
+ #commands = []
286
+ #previous_command = nil
284
287
  else
285
288
  commands << command
286
289
  previous_command = command
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: asf-soap-adapter
3
3
  version: !ruby/object:Gem::Version
4
- hash: 19
4
+ hash: 31
5
5
  prerelease: false
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
- - 2
10
- version: 1.0.2
9
+ - 4
10
+ version: 1.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - Doug Chasman
@@ -23,7 +23,7 @@ autorequire:
23
23
  bindir: bin
24
24
  cert_chain: []
25
25
 
26
- date: 2010-11-28 00:00:00 +01:00
26
+ date: 2010-12-13 00:00:00 -06:00
27
27
  default_executable:
28
28
  dependencies:
29
29
  - !ruby/object:Gem::Dependency