moxiworks_platform 0.13.6 → 0.13.7
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/lib/moxiworks_platform/agent.rb +6 -0
- data/lib/moxiworks_platform/listing.rb +5 -0
- data/lib/moxiworks_platform/version.rb +1 -1
- data/publish_package.sh +16 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1ebbbbe503ac44aee7658e910d07c52a8c3c4f1a
|
|
4
|
+
data.tar.gz: a53f34547f9b1f6e52b89c16609ba51c793fc30f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4816d0254fde4e256362b4e109638d6518a5ea291f640501e3f6de2b3bfe0103a6348d9aac25504a930d16604675d060aeddb678268ed96068854bc37d7ce8f3
|
|
7
|
+
data.tar.gz: 5e6f3999d55668c143dfcf7dda30e21e619b9a31a771ec01996866c4374f0b8869bb6f669a4f40eb31f7a5804a6565f70dab4efffdfea7283714176d6f36a04e
|
|
@@ -163,6 +163,12 @@ module MoxiworksPlatform
|
|
|
163
163
|
# objects.
|
|
164
164
|
attr_accessor :uuid
|
|
165
165
|
|
|
166
|
+
# @!attribute has_engage_access
|
|
167
|
+
#
|
|
168
|
+
# @return [String] whether the agent has access to MoxiWorks Engage
|
|
169
|
+
attr_accessor :has_engage_access
|
|
170
|
+
|
|
171
|
+
|
|
166
172
|
# Find an Agent on the Moxi Works Platform
|
|
167
173
|
# @param [Hash] opts named parameter Hash
|
|
168
174
|
# @option opts [String] :moxi_works_agent_id *REQUIRED* -- either :moxi_works_agent_id or :agent_uuid is required -- The Moxi Works Agent ID for the agent
|
|
@@ -127,6 +127,11 @@ module MoxiworksPlatform
|
|
|
127
127
|
# @return [String] MoxiWorks ID of listing agent office
|
|
128
128
|
attr_accessor :list_agent_moxi_works_office_id
|
|
129
129
|
|
|
130
|
+
# @!attribute list_agent_office_id
|
|
131
|
+
#
|
|
132
|
+
# @return [String] ID of listing agent office
|
|
133
|
+
attr_accessor :list_agent_office_id
|
|
134
|
+
|
|
130
135
|
# @!attribute list_agent_uuid
|
|
131
136
|
#
|
|
132
137
|
# @return [String] UUID of listing agent
|
data/publish_package.sh
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
|
|
3
|
+
the_version=`cat lib/moxiworks_platform/version.rb | grep "VERSION" | sed "s/^.*=\ //g" | sed "s/'//g"`
|
|
4
|
+
branch=`git rev-parse --abbrev-ref HEAD`
|
|
5
|
+
|
|
6
|
+
git commit -a -m "${the_version}"
|
|
7
|
+
git tag -a "${the_version}" -m "${the_version}"
|
|
8
|
+
git fetch upstream
|
|
9
|
+
git merge upstream/${branch}
|
|
10
|
+
git push origin ${branch}
|
|
11
|
+
git push upstream ${branch}
|
|
12
|
+
git push upstream ${the_version}
|
|
13
|
+
|
|
14
|
+
mv pkg/* old/
|
|
15
|
+
bundle exec rake build
|
|
16
|
+
gem push pkg/*
|
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.7
|
|
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-04-
|
|
11
|
+
date: 2018-04-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rest-client
|
|
@@ -109,6 +109,7 @@ files:
|
|
|
109
109
|
- lib/moxiworks_platform/version.rb
|
|
110
110
|
- moxiworks_platform.gemspec
|
|
111
111
|
- publish_docs.sh
|
|
112
|
+
- publish_package.sh
|
|
112
113
|
homepage: https://github.com/moxiworks-platform/moxiworks-ruby
|
|
113
114
|
licenses: []
|
|
114
115
|
metadata: {}
|