moxiworks_platform 0.13.6 → 0.13.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 93e96952b962050a12a78929704fe27619520f01
4
- data.tar.gz: 2ce3902f513ac8e71dc236249c8d710615222b24
3
+ metadata.gz: 1ebbbbe503ac44aee7658e910d07c52a8c3c4f1a
4
+ data.tar.gz: a53f34547f9b1f6e52b89c16609ba51c793fc30f
5
5
  SHA512:
6
- metadata.gz: 45fe68c6fff6f1dc19062ed991d13f87af760bd037a2ee87ccac1fc4564328d45bb2791217c934ac5f198663101114fb14047d892c769f92023d5860b0022b49
7
- data.tar.gz: ae174f57bc1dab8842ce0b8cc7cb9d73d57dd780222f3048be5c34405b9d95b42635a1715b908c4ece9164ca0c4db17831361ab6205dff0ff63dd5a6d4c045b5
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
@@ -1,3 +1,3 @@
1
1
  module MoxiworksPlatform
2
- VERSION = '0.13.6'
2
+ VERSION = '0.13.7'
3
3
  end
@@ -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.6
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-05 00:00:00.000000000 Z
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: {}