mpxj 16.2.0 → 16.3.0
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 +16 -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: a3b7708b73a02c31086024f5c94b4de8f853d1985df7e2b834ab3be1fc12f7f6
|
|
4
|
+
data.tar.gz: 9a671c15d7db55e8957865b2770d417b87e436b1494a64a90b8ba840862c59a5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 66811b9468b91aac5c6d2712abaf0a10f91b56230a7f27b83e09ced42e905ac106f2cc8fd283b8236e70bef157ebb20e02c3737d4acba16763068a9e155b67e9
|
|
7
|
+
data.tar.gz: 18e2fca860eab92ede6fe79939c257982a35b65aaabfa605a544965ea7efa70f0e0842dd53ab632077e6782133f2e2fac4e831e908157799236ebd5d8734c63e
|
data/lib/mpxj/mpxj.jar
CHANGED
|
Binary file
|
|
@@ -11,6 +11,13 @@ module MPXJ
|
|
|
11
11
|
get_integer_value(attribute_values['activity_default_calendar_unique_id'])
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
+
# Retrieve the Activity Default Price Per Unit value
|
|
15
|
+
#
|
|
16
|
+
# @return Activity Default Price Per Unit value
|
|
17
|
+
def activity_default_price_per_unit
|
|
18
|
+
get_float_value(attribute_values['activity_default_price_per_unit'])
|
|
19
|
+
end
|
|
20
|
+
|
|
14
21
|
# Retrieve the Activity ID Increment value
|
|
15
22
|
#
|
|
16
23
|
# @return Activity ID Increment value
|
|
@@ -1222,6 +1229,13 @@ module MPXJ
|
|
|
1222
1229
|
get_integer_value(attribute_values['unique_id'])
|
|
1223
1230
|
end
|
|
1224
1231
|
|
|
1232
|
+
# Retrieve the Update Units When Costs Change On Resource Assignments value
|
|
1233
|
+
#
|
|
1234
|
+
# @return Update Units When Costs Change On Resource Assignments value
|
|
1235
|
+
def update_units_when_costs_change_on_resource_assignments
|
|
1236
|
+
get_boolean_value(attribute_values['update_units_when_costs_change_on_resource_assignments'])
|
|
1237
|
+
end
|
|
1238
|
+
|
|
1225
1239
|
# Retrieve the Updating Task Status Updates Resource Status value
|
|
1226
1240
|
#
|
|
1227
1241
|
# @return Updating Task Status Updates Resource Status value
|
|
@@ -1266,6 +1280,7 @@ module MPXJ
|
|
|
1266
1280
|
|
|
1267
1281
|
ATTRIBUTE_TYPES = {
|
|
1268
1282
|
'activity_default_calendar_unique_id' => :integer,
|
|
1283
|
+
'activity_default_price_per_unit' => :currency,
|
|
1269
1284
|
'activity_id_increment' => :integer,
|
|
1270
1285
|
'activity_id_increment_based_on_selected_activity' => :boolean,
|
|
1271
1286
|
'activity_id_prefix' => :string,
|
|
@@ -1439,6 +1454,7 @@ module MPXJ
|
|
|
1439
1454
|
'time_separator' => :char,
|
|
1440
1455
|
'total_slack_calculation_type' => :total_slack_type,
|
|
1441
1456
|
'unique_id' => :integer,
|
|
1457
|
+
'update_units_when_costs_change_on_resource_assignments' => :boolean,
|
|
1442
1458
|
'updating_task_status_updates_resource_status' => :boolean,
|
|
1443
1459
|
'use_expected_finish_dates' => :boolean,
|
|
1444
1460
|
'wbs_code_separator' => :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: 16.
|
|
4
|
+
version: 16.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jon Iles
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-06-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|