moxiworks_platform 0.13.7 → 0.13.8
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.
- checksums.yaml +4 -4
- data/.gitignore +1 -0
- data/MoxiworksPlatform/ActionLog.html +1155 -0
- data/MoxiworksPlatform/Agent.html +3668 -0
- data/MoxiworksPlatform/Brand.html +2897 -0
- data/MoxiworksPlatform/BuyerTransaction.html +4703 -0
- data/MoxiworksPlatform/Company.html +678 -0
- data/MoxiworksPlatform/Config.html +323 -0
- data/MoxiworksPlatform/Contact.html +7540 -0
- data/MoxiworksPlatform/Credentials.html +1078 -0
- data/MoxiworksPlatform/EmailCampaign.html +1076 -0
- data/MoxiworksPlatform/Event.html +2987 -0
- data/MoxiworksPlatform/Exception.html +117 -0
- data/MoxiworksPlatform/Exception/ArgumentError.html +146 -0
- data/MoxiworksPlatform/Exception/AuthorizationError.html +134 -0
- data/MoxiworksPlatform/Exception/PlatformError.html +141 -0
- data/MoxiworksPlatform/Exception/RemoteRequestFailure.html +134 -0
- data/MoxiworksPlatform/Gallery.html +877 -0
- data/MoxiworksPlatform/Group.html +941 -0
- data/MoxiworksPlatform/Listing.html +6242 -0
- data/MoxiworksPlatform/Office.html +2144 -0
- data/MoxiworksPlatform/PresentationLog.html +1715 -0
- data/MoxiworksPlatform/Resource.html +1906 -0
- data/MoxiworksPlatform/SellerTransaction.html +4222 -0
- data/MoxiworksPlatform/Session.html +209 -0
- data/MoxiworksPlatform/SoldListing.html +5606 -0
- data/MoxiworksPlatform/Task.html +2351 -0
- data/MoxiworksPlatform/Team.html +2147 -0
- data/lib/moxiworks_platform/office.rb +6 -0
- data/lib/moxiworks_platform/version.rb +1 -1
- metadata +28 -2
@@ -87,6 +87,12 @@ module MoxiworksPlatform
|
|
87
87
|
# @return [String] url of the office's website
|
88
88
|
attr_accessor :office_website
|
89
89
|
|
90
|
+
# @!attribute region
|
91
|
+
#
|
92
|
+
# @return [String] office's region
|
93
|
+
attr_accessor :region
|
94
|
+
|
95
|
+
|
90
96
|
|
91
97
|
# Find an Office on the Moxi Works Platform
|
92
98
|
# @param [Hash] opts named parameter Hash
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: moxiworks_platform
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tres Wong-Godfrey
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rest-client
|
@@ -78,6 +78,32 @@ files:
|
|
78
78
|
- ".rspec"
|
79
79
|
- ".travis.yml"
|
80
80
|
- Gemfile
|
81
|
+
- MoxiworksPlatform/ActionLog.html
|
82
|
+
- MoxiworksPlatform/Agent.html
|
83
|
+
- MoxiworksPlatform/Brand.html
|
84
|
+
- MoxiworksPlatform/BuyerTransaction.html
|
85
|
+
- MoxiworksPlatform/Company.html
|
86
|
+
- MoxiworksPlatform/Config.html
|
87
|
+
- MoxiworksPlatform/Contact.html
|
88
|
+
- MoxiworksPlatform/Credentials.html
|
89
|
+
- MoxiworksPlatform/EmailCampaign.html
|
90
|
+
- MoxiworksPlatform/Event.html
|
91
|
+
- MoxiworksPlatform/Exception.html
|
92
|
+
- MoxiworksPlatform/Exception/ArgumentError.html
|
93
|
+
- MoxiworksPlatform/Exception/AuthorizationError.html
|
94
|
+
- MoxiworksPlatform/Exception/PlatformError.html
|
95
|
+
- MoxiworksPlatform/Exception/RemoteRequestFailure.html
|
96
|
+
- MoxiworksPlatform/Gallery.html
|
97
|
+
- MoxiworksPlatform/Group.html
|
98
|
+
- MoxiworksPlatform/Listing.html
|
99
|
+
- MoxiworksPlatform/Office.html
|
100
|
+
- MoxiworksPlatform/PresentationLog.html
|
101
|
+
- MoxiworksPlatform/Resource.html
|
102
|
+
- MoxiworksPlatform/SellerTransaction.html
|
103
|
+
- MoxiworksPlatform/Session.html
|
104
|
+
- MoxiworksPlatform/SoldListing.html
|
105
|
+
- MoxiworksPlatform/Task.html
|
106
|
+
- MoxiworksPlatform/Team.html
|
81
107
|
- README.md
|
82
108
|
- Rakefile
|
83
109
|
- bin/console
|