landslider 0.5.20 → 0.5.21
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/VERSION.yml +1 -1
- data/landslider.gemspec +15 -2
- data/lib/landslider.rb +1 -0
- metadata +14 -4
data/VERSION.yml
CHANGED
data/landslider.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{landslider}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.21"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Jay Prall"]
|
|
12
|
-
s.date = %q{2011-06-
|
|
12
|
+
s.date = %q{2011-06-28}
|
|
13
13
|
s.description = %q{Landslider is a ruby interface to the Landslide SOAP-based API}
|
|
14
14
|
s.email = %q{jay@j4y.net}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
@@ -83,6 +83,19 @@ Gem::Specification.new do |s|
|
|
|
83
83
|
s.require_paths = ["lib"]
|
|
84
84
|
s.rubygems_version = %q{1.6.2}
|
|
85
85
|
s.summary = %q{Landslide Ruby}
|
|
86
|
+
s.test_files = [
|
|
87
|
+
"test/get_account_types_test.rb",
|
|
88
|
+
"test/get_accounts_test.rb",
|
|
89
|
+
"test/get_contact_test.rb",
|
|
90
|
+
"test/landslider_test.rb",
|
|
91
|
+
"test/run_mylist_by_id_test.rb",
|
|
92
|
+
"test/test_helper.rb",
|
|
93
|
+
"test/ws_account_note_search_test.rb",
|
|
94
|
+
"test/ws_contact_note_search_test.rb",
|
|
95
|
+
"test/ws_lead_note_search_test.rb",
|
|
96
|
+
"test/ws_opportunity_note_search_test.rb",
|
|
97
|
+
"test/ws_search_test.rb"
|
|
98
|
+
]
|
|
86
99
|
|
|
87
100
|
if s.respond_to? :specification_version then
|
|
88
101
|
s.specification_version = 3
|
data/lib/landslider.rb
CHANGED
|
@@ -605,6 +605,7 @@ class Landslider < Handsoap::Service
|
|
|
605
605
|
:reports_to => xml_to_str(node, './reportsTo/text()'),
|
|
606
606
|
:owner_id => xml_to_int(node, './ownerId/text()'),
|
|
607
607
|
:contact_id => xml_to_int(node, './contactId/text()'),
|
|
608
|
+
:account_id => xml_to_int(node, './accountId/text()'),
|
|
608
609
|
:custom_fields => node.xpath('./customFields', ns).map { |child| parse_custom_field(child) }
|
|
609
610
|
}
|
|
610
611
|
end
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: landslider
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.5.
|
|
5
|
+
version: 0.5.21
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Jay Prall
|
|
@@ -10,7 +10,7 @@ autorequire:
|
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
|
-
date: 2011-06-
|
|
13
|
+
date: 2011-06-28 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|
|
@@ -166,5 +166,15 @@ rubygems_version: 1.6.2
|
|
|
166
166
|
signing_key:
|
|
167
167
|
specification_version: 3
|
|
168
168
|
summary: Landslide Ruby
|
|
169
|
-
test_files:
|
|
170
|
-
|
|
169
|
+
test_files:
|
|
170
|
+
- test/get_account_types_test.rb
|
|
171
|
+
- test/get_accounts_test.rb
|
|
172
|
+
- test/get_contact_test.rb
|
|
173
|
+
- test/landslider_test.rb
|
|
174
|
+
- test/run_mylist_by_id_test.rb
|
|
175
|
+
- test/test_helper.rb
|
|
176
|
+
- test/ws_account_note_search_test.rb
|
|
177
|
+
- test/ws_contact_note_search_test.rb
|
|
178
|
+
- test/ws_lead_note_search_test.rb
|
|
179
|
+
- test/ws_opportunity_note_search_test.rb
|
|
180
|
+
- test/ws_search_test.rb
|