activesalesforce 0.2.7 → 0.2.8

Sign up to get free protection for your applications and to get access to all the features.
@@ -82,10 +82,6 @@ module Asf
82
82
  File.open(recording_file_name) do |f|
83
83
  puts "Opening recorded binding #{recording_file_name}"
84
84
  connection.load(f)
85
-
86
- connection.recorded_responses.each do |request, reponse|
87
- pp request
88
- end
89
85
  end
90
86
  end
91
87
 
@@ -100,10 +96,6 @@ module Asf
100
96
  File.open(recording_file_name, "w") do |f|
101
97
  connection.save(f)
102
98
  end
103
-
104
- connection.recorded_responses.each do |request, reponse|
105
- pp request
106
- end
107
99
  end
108
100
  end
109
101
 
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: activesalesforce
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.7
6
+ version: 0.2.8
7
7
  date: 2006-02-20 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:
@@ -47,6 +47,7 @@ files:
47
47
  - test/unit/recorded_results/AsfUnitTestsBasicTest.test_create_a_contact.recording
48
48
  - test/unit/recorded_results/AsfUnitTestsBasicTest.test_find_a_contact_by_id.recording
49
49
  - test/unit/recorded_results/AsfUnitTestsBasicTest.test_count_contacts.recording
50
+ - test/unit/recorded_results/AsfUnitTestsBasicTest.test_master_detail.recording
50
51
  - test/unit/recorded_results/AsfUnitTestsBasicTest.test_get_created_by_from_contact.recording
51
52
  - README
52
53
  test_files: []