mpxj 14.5.2 → 15.0.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/apiguardian-api-1.1.2.jar +0 -0
- data/lib/mpxj/commons-codec-1.19.0.jar +0 -0
- data/lib/mpxj/commons-collections4-4.5.0.jar +0 -0
- data/lib/mpxj/commons-io-2.20.0.jar +0 -0
- data/lib/mpxj/commons-lang3-3.18.0.jar +0 -0
- data/lib/mpxj/{jackcess-4.0.8.jar → jackcess-4.0.10.jar} +0 -0
- data/lib/mpxj/junit-jupiter-api-5.14.1.jar +0 -0
- data/lib/mpxj/junit-jupiter-engine-5.14.1.jar +0 -0
- data/lib/mpxj/junit-platform-commons-1.14.1.jar +0 -0
- data/lib/mpxj/junit-platform-engine-1.14.1.jar +0 -0
- data/lib/mpxj/junit-platform-launcher-1.14.1.jar +0 -0
- data/lib/mpxj/mpxj.jar +0 -0
- data/lib/mpxj/opentest4j-1.3.0.jar +0 -0
- data/lib/mpxj/{poi-5.4.1.jar → poi-5.5.0.jar} +0 -0
- data/lib/mpxj/property_methods.rb +24 -0
- data/lib/mpxj/version.rb +1 -1
- metadata +15 -10
- data/lib/mpxj/commons-codec-1.18.0.jar +0 -0
- data/lib/mpxj/commons-collections4-4.4.jar +0 -0
- data/lib/mpxj/commons-io-2.18.0.jar +0 -0
- data/lib/mpxj/commons-lang3-3.19.0.jar +0 -0
- data/lib/mpxj/hamcrest-core-1.3.jar +0 -0
- data/lib/mpxj/junit-4.13.1.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 42a41d19457963f47ff3a05b84b10859568768c47f1a4bbd4b7ed1f2dc71ec88
|
|
4
|
+
data.tar.gz: 25117e6bbdacd314708a742be66af11ba29db1f1fef3d8201d6e6cec1b92e4b2
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5c6a7af3425d635502a7b58ff4651d4363f82eddda533801f99b40442bfa9a64a5c9e1ccb9956f11d53cb23c2782ab754f0c01d87e9ac43374cb0bace518eb75
|
|
7
|
+
data.tar.gz: 66124785abb02d1d569ea0b485d2ebb77fac7010e1f66f920e78f48c4f1256d884f8ccb8a45ad26161a08f26443604b8d435bec1f18527bed5ec455baf89ed11
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/mpxj/mpxj.jar
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -4,6 +4,13 @@ module MPXJ
|
|
|
4
4
|
base.extend(PropertyClassMethods)
|
|
5
5
|
end
|
|
6
6
|
|
|
7
|
+
# Retrieve the Activity Default Calendar Unique ID value
|
|
8
|
+
#
|
|
9
|
+
# @return Activity Default Calendar Unique ID value
|
|
10
|
+
def activity_default_calendar_unique_id
|
|
11
|
+
get_integer_value(attribute_values['activity_default_calendar_unique_id'])
|
|
12
|
+
end
|
|
13
|
+
|
|
7
14
|
# Retrieve the Activity ID Increment value
|
|
8
15
|
#
|
|
9
16
|
# @return Activity ID Increment value
|
|
@@ -32,6 +39,13 @@ module MPXJ
|
|
|
32
39
|
get_integer_value(attribute_values['activity_id_suffix'])
|
|
33
40
|
end
|
|
34
41
|
|
|
42
|
+
# Retrieve the Activity Percent Complete Based On Activity Steps value
|
|
43
|
+
#
|
|
44
|
+
# @return Activity Percent Complete Based On Activity Steps value
|
|
45
|
+
def activity_percent_complete_based_on_activity_steps
|
|
46
|
+
get_boolean_value(attribute_values['activity_percent_complete_based_on_activity_steps'])
|
|
47
|
+
end
|
|
48
|
+
|
|
35
49
|
# Retrieve the Actuals In Sync value
|
|
36
50
|
#
|
|
37
51
|
# @return Actuals In Sync value
|
|
@@ -739,6 +753,13 @@ module MPXJ
|
|
|
739
753
|
get_date_value(attribute_values['last_saved'])
|
|
740
754
|
end
|
|
741
755
|
|
|
756
|
+
# Retrieve the Last Scheduled Date value
|
|
757
|
+
#
|
|
758
|
+
# @return Last Scheduled Date value
|
|
759
|
+
def last_scheduled_date
|
|
760
|
+
get_date_value(attribute_values['last_scheduled_date'])
|
|
761
|
+
end
|
|
762
|
+
|
|
742
763
|
# Retrieve the Leveling Priorities value
|
|
743
764
|
#
|
|
744
765
|
# @return Leveling Priorities value
|
|
@@ -1244,10 +1265,12 @@ module MPXJ
|
|
|
1244
1265
|
end
|
|
1245
1266
|
|
|
1246
1267
|
ATTRIBUTE_TYPES = {
|
|
1268
|
+
'activity_default_calendar_unique_id' => :integer,
|
|
1247
1269
|
'activity_id_increment' => :integer,
|
|
1248
1270
|
'activity_id_increment_based_on_selected_activity' => :boolean,
|
|
1249
1271
|
'activity_id_prefix' => :string,
|
|
1250
1272
|
'activity_id_suffix' => :integer,
|
|
1273
|
+
'activity_percent_complete_based_on_activity_steps' => :boolean,
|
|
1251
1274
|
'actuals_in_sync' => :boolean,
|
|
1252
1275
|
'actual_cost' => :currency,
|
|
1253
1276
|
'actual_duration' => :duration,
|
|
@@ -1349,6 +1372,7 @@ module MPXJ
|
|
|
1349
1372
|
'last_author' => :string,
|
|
1350
1373
|
'last_baseline_update_date' => :date,
|
|
1351
1374
|
'last_saved' => :date,
|
|
1375
|
+
'last_scheduled_date' => :date,
|
|
1352
1376
|
'leveling_priorities' => :string,
|
|
1353
1377
|
'level_all_resources' => :boolean,
|
|
1354
1378
|
'level_resources_only_within_activity_total_float' => :boolean,
|
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:
|
|
4
|
+
version: 15.0.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: 2025-
|
|
11
|
+
date: 2025-11-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -113,6 +113,7 @@ files:
|
|
|
113
113
|
- legal/licence.txt
|
|
114
114
|
- lib/mpxj.rb
|
|
115
115
|
- lib/mpxj/SparseBitSet-1.3.jar
|
|
116
|
+
- lib/mpxj/apiguardian-api-1.1.2.jar
|
|
116
117
|
- lib/mpxj/argument_error.rb
|
|
117
118
|
- lib/mpxj/assignment.rb
|
|
118
119
|
- lib/mpxj/assignment_methods.rb
|
|
@@ -121,16 +122,15 @@ files:
|
|
|
121
122
|
- lib/mpxj/calendar_exception.rb
|
|
122
123
|
- lib/mpxj/calendar_hours.rb
|
|
123
124
|
- lib/mpxj/calendar_week.rb
|
|
124
|
-
- lib/mpxj/commons-codec-1.
|
|
125
|
-
- lib/mpxj/commons-collections4-4.
|
|
126
|
-
- lib/mpxj/commons-io-2.
|
|
127
|
-
- lib/mpxj/commons-lang3-3.
|
|
125
|
+
- lib/mpxj/commons-codec-1.19.0.jar
|
|
126
|
+
- lib/mpxj/commons-collections4-4.5.0.jar
|
|
127
|
+
- lib/mpxj/commons-io-2.20.0.jar
|
|
128
|
+
- lib/mpxj/commons-lang3-3.18.0.jar
|
|
128
129
|
- lib/mpxj/commons-logging-1.2.jar
|
|
129
130
|
- lib/mpxj/commons-math3-3.6.1.jar
|
|
130
131
|
- lib/mpxj/container.rb
|
|
131
|
-
- lib/mpxj/hamcrest-core-1.3.jar
|
|
132
132
|
- lib/mpxj/istack-commons-runtime-4.0.1.jar
|
|
133
|
-
- lib/mpxj/jackcess-4.0.
|
|
133
|
+
- lib/mpxj/jackcess-4.0.10.jar
|
|
134
134
|
- lib/mpxj/jackson-annotations-2.19.1.jar
|
|
135
135
|
- lib/mpxj/jackson-core-2.19.1.jar
|
|
136
136
|
- lib/mpxj/jackson-databind-2.19.1.jar
|
|
@@ -141,11 +141,16 @@ files:
|
|
|
141
141
|
- lib/mpxj/jgoodies-binding-2.13.0.jar
|
|
142
142
|
- lib/mpxj/jgoodies-common-1.8.1.jar
|
|
143
143
|
- lib/mpxj/jsoup-1.21.1.jar
|
|
144
|
-
- lib/mpxj/junit-
|
|
144
|
+
- lib/mpxj/junit-jupiter-api-5.14.1.jar
|
|
145
|
+
- lib/mpxj/junit-jupiter-engine-5.14.1.jar
|
|
146
|
+
- lib/mpxj/junit-platform-commons-1.14.1.jar
|
|
147
|
+
- lib/mpxj/junit-platform-engine-1.14.1.jar
|
|
148
|
+
- lib/mpxj/junit-platform-launcher-1.14.1.jar
|
|
145
149
|
- lib/mpxj/log4j-api-2.24.3.jar
|
|
146
150
|
- lib/mpxj/mpxj.jar
|
|
151
|
+
- lib/mpxj/opentest4j-1.3.0.jar
|
|
147
152
|
- lib/mpxj/password_protected.rb
|
|
148
|
-
- lib/mpxj/poi-5.
|
|
153
|
+
- lib/mpxj/poi-5.5.0.jar
|
|
149
154
|
- lib/mpxj/project.rb
|
|
150
155
|
- lib/mpxj/properties.rb
|
|
151
156
|
- lib/mpxj/property_methods.rb
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/mpxj/junit-4.13.1.jar
DELETED
|
Binary file
|