landslider 0.5.22 → 0.5.24
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 +2 -2
- data/lib/landslider/entities/ws_search_criterion.rb +2 -0
- data/lib/landslider.rb +1 -0
- metadata +2 -2
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.24"
|
|
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-07-19}
|
|
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 = [
|
|
@@ -50,6 +50,7 @@ class Landslider
|
|
|
50
50
|
# * SyncWithQuickBooks
|
|
51
51
|
# * Ticker
|
|
52
52
|
# * Url
|
|
53
|
+
# * acc_<custom_field_id>
|
|
53
54
|
#
|
|
54
55
|
# Currently Searchable Opportunity Fields:
|
|
55
56
|
# * AccountId
|
|
@@ -85,6 +86,7 @@ class Landslider
|
|
|
85
86
|
# * StatusReason
|
|
86
87
|
# * StatusReasonId
|
|
87
88
|
# * SuspendedDate
|
|
89
|
+
# * opp_<custom_field_id>
|
|
88
90
|
#
|
|
89
91
|
# Currently Searchable Duration Type Fields:
|
|
90
92
|
# * DurationType
|
data/lib/landslider.rb
CHANGED
|
@@ -606,6 +606,7 @@ class Landslider < Handsoap::Service
|
|
|
606
606
|
:owner_id => xml_to_int(node, './ownerId/text()'),
|
|
607
607
|
:contact_id => xml_to_int(node, './contactId/text()'),
|
|
608
608
|
:account_id => xml_to_int(node, './accountId/text()'),
|
|
609
|
+
:updated_on => xml_to_date(node, './updatedOn/text()'),
|
|
609
610
|
:custom_fields => node.xpath('./customFields', ns).map { |child| parse_custom_field(child) }
|
|
610
611
|
}
|
|
611
612
|
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.24
|
|
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-07-19 00:00:00 -04:00
|
|
14
14
|
default_executable:
|
|
15
15
|
dependencies:
|
|
16
16
|
- !ruby/object:Gem::Dependency
|