landslider 0.5.17 → 0.5.18
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION.yml +1 -1
- data/landslider.gemspec +2 -15
- data/lib/landslider.rb +1 -1
- metadata +4 -14
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.18"
|
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-
|
12
|
+
s.date = %q{2011-06-23}
|
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,19 +83,6 @@ 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
|
-
]
|
99
86
|
|
100
87
|
if s.respond_to? :specification_version then
|
101
88
|
s.specification_version = 3
|
data/lib/landslider.rb
CHANGED
@@ -601,7 +601,7 @@ class Landslider < Handsoap::Service
|
|
601
601
|
:work_phone => xml_to_str(node, './workPhone/text()'),
|
602
602
|
:home_phone => xml_to_str(node, './homePhone/text()'),
|
603
603
|
:email => xml_to_str(node, './email/text()'),
|
604
|
-
:title => xml_to_str(node, './
|
604
|
+
:title => xml_to_str(node, './title/text()'),
|
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()'),
|
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.18
|
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-
|
13
|
+
date: 2011-06-23 00:00:00 -04:00
|
14
14
|
default_executable:
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
@@ -166,15 +166,5 @@ rubygems_version: 1.6.2
|
|
166
166
|
signing_key:
|
167
167
|
specification_version: 3
|
168
168
|
summary: Landslide Ruby
|
169
|
-
test_files:
|
170
|
-
|
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
|
169
|
+
test_files: []
|
170
|
+
|