mpxj 12.0.2 → 12.1.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of mpxj might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82ddff882b5135b354cf6fbff58f5d1b339d9c434b43a3b92dfd4baa4934a3a1
4
- data.tar.gz: d5cb47484b578f9df2e3a36695071224619bfb036622a495ff5f53fbb3887753
3
+ metadata.gz: 4f6387f55db81df2bd87558ced0e7051949bb3697189fd6a45cdd3ecf9b3b678
4
+ data.tar.gz: b18ae003f3921d0e3ab733bdcb13dc598743b2be1304b4a479955debe7c8f10d
5
5
  SHA512:
6
- metadata.gz: 9474c45c69f3f63fd3afe1ba00b1fcc0efdbd92e6c5dfa18bb5d189991c1563ab67e864ff2555fc4ac78c3e859f94d1aa7c4c5097c3108652411cede97ca4996
7
- data.tar.gz: 74d07f62e4ba54cd536494bd5d8aa4955ea262c5da12281b40340a98edf545c1897cf7c92f41418e9ae430e8ad09cadabe615fe74b3da706d390d9bea22bbad5
6
+ metadata.gz: 1c5531aa19008ac613507cbf85f224c250613dbc86ced7da9a61577aab5684c02b83a601825b2bcdfacdc7c8582c4f1c521e61006ba8de84e9074c11881df278
7
+ data.tar.gz: 224e6ebb3b15209d042bdbbb26495eee735c9d39efde6034ec141567df196b6d279f34987e6b7b8eed5574021d75256154ec941cf357562d11db50daadeff8fc
data/lib/mpxj/mpxj.jar CHANGED
Binary file
@@ -949,6 +949,13 @@ module MPXJ
949
949
  attribute_values['time_separator']
950
950
  end
951
951
 
952
+ # Retrieve the Total Slack Calculation Type value
953
+ #
954
+ # @return Total Slack Calculation Type value
955
+ def total_slack_calculation_type
956
+ attribute_values['total_slack_calculation_type']
957
+ end
958
+
952
959
  # Retrieve the Unique ID value
953
960
  #
954
961
  # @return Unique ID value
@@ -1120,6 +1127,7 @@ module MPXJ
1120
1127
  'thousands_separator' => :char,
1121
1128
  'time_format' => :project_time_format,
1122
1129
  'time_separator' => :char,
1130
+ 'total_slack_calculation_type' => :total_slack_type,
1123
1131
  'unique_id' => :integer,
1124
1132
  'updating_task_status_updates_resource_status' => :boolean,
1125
1133
  'week_start_day' => :day,
@@ -92,7 +92,7 @@ module MPXJ
92
92
  #
93
93
  # @return Assignment Delay value
94
94
  def assignment_delay
95
- attribute_values['assignment_delay']
95
+ get_duration_value(attribute_values['assignment_delay'])
96
96
  end
97
97
 
98
98
  # Retrieve the Assignment Owner value
@@ -106,7 +106,7 @@ module MPXJ
106
106
  #
107
107
  # @return Assignment Units value
108
108
  def assignment_units
109
- attribute_values['assignment_units']
109
+ get_float_value(attribute_values['assignment_units'])
110
110
  end
111
111
 
112
112
  # Retrieve the Availability Data value
@@ -813,7 +813,7 @@ module MPXJ
813
813
  #
814
814
  # @return Cost Rate Table value
815
815
  def cost_rate_table
816
- attribute_values['cost_rate_table']
816
+ get_integer_value(attribute_values['cost_rate_table'])
817
817
  end
818
818
 
819
819
  # Retrieve the Cost Variance value
@@ -2248,14 +2248,14 @@ module MPXJ
2248
2248
  #
2249
2249
  # @return Enterprise Required Values value
2250
2250
  def enterprise_required_values
2251
- attribute_values['enterprise_required_values']
2251
+ get_boolean_value(attribute_values['enterprise_required_values'])
2252
2252
  end
2253
2253
 
2254
2254
  # Retrieve the Enterprise Team Member value
2255
2255
  #
2256
2256
  # @return Enterprise Team Member value
2257
2257
  def enterprise_team_member
2258
- attribute_values['enterprise_team_member']
2258
+ get_boolean_value(attribute_values['enterprise_team_member'])
2259
2259
  end
2260
2260
 
2261
2261
  # Retrieve the Enterprise Text1 value
@@ -2794,7 +2794,7 @@ module MPXJ
2794
2794
  #
2795
2795
  # @return Group By Summary value
2796
2796
  def group_by_summary
2797
- attribute_values['group_by_summary']
2797
+ get_boolean_value(attribute_values['group_by_summary'])
2798
2798
  end
2799
2799
 
2800
2800
  # Retrieve the GUID value
@@ -2892,7 +2892,7 @@ module MPXJ
2892
2892
  #
2893
2893
  # @return Leveling Delay value
2894
2894
  def leveling_delay
2895
- attribute_values['leveling_delay']
2895
+ get_duration_value(attribute_values['leveling_delay'])
2896
2896
  end
2897
2897
 
2898
2898
  # Retrieve the Linked Fields value
@@ -3567,13 +3567,6 @@ module MPXJ
3567
3567
  attribute_values['task_summary_name']
3568
3568
  end
3569
3569
 
3570
- # Retrieve the TeamStatus Pending value
3571
- #
3572
- # @return TeamStatus Pending value
3573
- def teamstatus_pending
3574
- get_boolean_value(attribute_values['teamstatus_pending'])
3575
- end
3576
-
3577
3570
  # Retrieve the Team Assignment Pool value
3578
3571
  #
3579
3572
  # @return Team Assignment Pool value
@@ -3581,6 +3574,13 @@ module MPXJ
3581
3574
  get_boolean_value(attribute_values['team_assignment_pool'])
3582
3575
  end
3583
3576
 
3577
+ # Retrieve the TeamStatus Pending value
3578
+ #
3579
+ # @return TeamStatus Pending value
3580
+ def team_status_pending
3581
+ get_boolean_value(attribute_values['team_status_pending'])
3582
+ end
3583
+
3584
3584
  # Retrieve the Text1 value
3585
3585
  #
3586
3586
  # @return Text1 value
@@ -3888,9 +3888,9 @@ module MPXJ
3888
3888
  'actual_work_protected' => :work,
3889
3889
  'acwp' => :currency,
3890
3890
  'assignment' => :boolean,
3891
- 'assignment_delay' => :string,
3891
+ 'assignment_delay' => :delay,
3892
3892
  'assignment_owner' => :string,
3893
- 'assignment_units' => :string,
3893
+ 'assignment_units' => :units,
3894
3894
  'availability_data' => :binary,
3895
3895
  'available_from' => :date,
3896
3896
  'available_to' => :date,
@@ -3991,7 +3991,7 @@ module MPXJ
3991
3991
  'cost_rate_c' => :binary,
3992
3992
  'cost_rate_d' => :binary,
3993
3993
  'cost_rate_e' => :binary,
3994
- 'cost_rate_table' => :string,
3994
+ 'cost_rate_table' => :short,
3995
3995
  'cost_variance' => :currency,
3996
3996
  'created' => :date,
3997
3997
  'cv' => :currency,
@@ -4196,8 +4196,8 @@ module MPXJ
4196
4196
  'enterprise_outline_code8' => :string,
4197
4197
  'enterprise_outline_code9' => :string,
4198
4198
  'enterprise_rbs' => :string,
4199
- 'enterprise_required_values' => :string,
4200
- 'enterprise_team_member' => :string,
4199
+ 'enterprise_required_values' => :boolean,
4200
+ 'enterprise_team_member' => :boolean,
4201
4201
  'enterprise_text1' => :string,
4202
4202
  'enterprise_text10' => :string,
4203
4203
  'enterprise_text11' => :string,
@@ -4274,7 +4274,7 @@ module MPXJ
4274
4274
  'flag9' => :boolean,
4275
4275
  'generic' => :boolean,
4276
4276
  'group' => :string,
4277
- 'group_by_summary' => :string,
4277
+ 'group_by_summary' => :boolean,
4278
4278
  'guid' => :guid,
4279
4279
  'hyperlink' => :string,
4280
4280
  'hyperlink_address' => :string,
@@ -4288,7 +4288,7 @@ module MPXJ
4288
4288
  'index' => :integer,
4289
4289
  'indicators' => :string,
4290
4290
  'initials' => :string,
4291
- 'leveling_delay' => :string,
4291
+ 'leveling_delay' => :duration,
4292
4292
  'linked_fields' => :boolean,
4293
4293
  'location_unique_id' => :integer,
4294
4294
  'material_label' => :string,
@@ -4385,8 +4385,8 @@ module MPXJ
4385
4385
  'sv' => :currency,
4386
4386
  'task_outline_number' => :string,
4387
4387
  'task_summary_name' => :string,
4388
- 'teamstatus_pending' => :boolean,
4389
4388
  'team_assignment_pool' => :boolean,
4389
+ 'team_status_pending' => :boolean,
4390
4390
  'text1' => :string,
4391
4391
  'text10' => :string,
4392
4392
  'text11' => :string,
data/lib/mpxj/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # MPXJ gem module
2
2
  module MPXJ
3
3
  # MPXJ gem version number
4
- VERSION = "12.0.2"
4
+ VERSION = "12.1.1"
5
5
  end
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: 12.0.2
4
+ version: 12.1.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-07-25 00:00:00.000000000 Z
11
+ date: 2023-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler