mpxj 11.3.0 → 11.3.1
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/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/property_methods.rb +8 -0
- data/lib/mpxj/resource_methods.rb +8 -0
- data/lib/mpxj/task_methods.rb +8 -0
- data/lib/mpxj/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3a42c3c3f41432fc14947c382a91d83bfbf9d781acd7dfac10929ff5ca6a616b
|
|
4
|
+
data.tar.gz: d92d8cee0daf4e8f79cdd26d7b5c0a7aeca3c704f62739bb1c163e354e003d80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35ef7f5081a3f2a3c3ccac5cc96a8820b01711421272c210d987a7b67556d4d8721bcdd722cba630b95e6d1df959d33d369ee6c147fb6ac37b29fcf53f3e438c
|
|
7
|
+
data.tar.gz: d9fe7a7a17afa664e504a9be1df7536381f0ea265512fd574866c8fe584463772251955ca19d6a0d589c39bb47bef8d5269e07712e65da5851261a83e1897cb9
|
data/lib/mpxj/mpxj.jar
CHANGED
|
Binary file
|
|
@@ -606,6 +606,13 @@ module MPXJ
|
|
|
606
606
|
get_date_value(attribute_values['last_saved'])
|
|
607
607
|
end
|
|
608
608
|
|
|
609
|
+
# Retrieve the Location Unique ID value
|
|
610
|
+
#
|
|
611
|
+
# @return Location Unique ID value
|
|
612
|
+
def location_unique_id
|
|
613
|
+
get_integer_value(attribute_values['location_unique_id'])
|
|
614
|
+
end
|
|
615
|
+
|
|
609
616
|
# Retrieve the Manager value
|
|
610
617
|
#
|
|
611
618
|
# @return Manager value
|
|
@@ -1057,6 +1064,7 @@ module MPXJ
|
|
|
1057
1064
|
'lastprinted' => :date,
|
|
1058
1065
|
'last_author' => :string,
|
|
1059
1066
|
'last_saved' => :date,
|
|
1067
|
+
'location_unique_id' => :integer,
|
|
1060
1068
|
'manager' => :string,
|
|
1061
1069
|
'microsoft_project_server_url' => :boolean,
|
|
1062
1070
|
'minutes_per_day' => :integer,
|
|
@@ -2902,6 +2902,13 @@ module MPXJ
|
|
|
2902
2902
|
get_boolean_value(attribute_values['linked_fields'])
|
|
2903
2903
|
end
|
|
2904
2904
|
|
|
2905
|
+
# Retrieve the Location Unique ID value
|
|
2906
|
+
#
|
|
2907
|
+
# @return Location Unique ID value
|
|
2908
|
+
def location_unique_id
|
|
2909
|
+
get_integer_value(attribute_values['location_unique_id'])
|
|
2910
|
+
end
|
|
2911
|
+
|
|
2905
2912
|
# Retrieve the Material Label value
|
|
2906
2913
|
#
|
|
2907
2914
|
# @return Material Label value
|
|
@@ -4283,6 +4290,7 @@ module MPXJ
|
|
|
4283
4290
|
'initials' => :string,
|
|
4284
4291
|
'leveling_delay' => :string,
|
|
4285
4292
|
'linked_fields' => :boolean,
|
|
4293
|
+
'location_unique_id' => :integer,
|
|
4286
4294
|
'material_label' => :string,
|
|
4287
4295
|
'max_units' => :units,
|
|
4288
4296
|
'modify_on_integrate' => :boolean,
|
data/lib/mpxj/task_methods.rb
CHANGED
|
@@ -5079,6 +5079,13 @@ module MPXJ
|
|
|
5079
5079
|
get_boolean_value(attribute_values['linked_fields'])
|
|
5080
5080
|
end
|
|
5081
5081
|
|
|
5082
|
+
# Retrieve the Location Unique ID value
|
|
5083
|
+
#
|
|
5084
|
+
# @return Location Unique ID value
|
|
5085
|
+
def location_unique_id
|
|
5086
|
+
get_integer_value(attribute_values['location_unique_id'])
|
|
5087
|
+
end
|
|
5088
|
+
|
|
5082
5089
|
# Retrieve the Longest Path value
|
|
5083
5090
|
#
|
|
5084
5091
|
# @return Longest Path value
|
|
@@ -7513,6 +7520,7 @@ module MPXJ
|
|
|
7513
7520
|
'leveling_delay_units' => :time_units,
|
|
7514
7521
|
'level_assignments' => :boolean,
|
|
7515
7522
|
'linked_fields' => :boolean,
|
|
7523
|
+
'location_unique_id' => :integer,
|
|
7516
7524
|
'longest_path' => :boolean,
|
|
7517
7525
|
'mail' => :string,
|
|
7518
7526
|
'manager' => :string,
|
data/lib/mpxj/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mpxj
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 11.3.
|
|
4
|
+
version: 11.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jon Iles
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-04-
|
|
11
|
+
date: 2023-04-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|