fossil 0.5.10 → 0.5.11
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.
- data/VERSION +1 -1
- data/fossil.gemspec +1 -1
- data/lib/models/trip_leg.rb +2 -8
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.11
|
data/fossil.gemspec
CHANGED
data/lib/models/trip_leg.rb
CHANGED
|
@@ -802,15 +802,9 @@ class TripLeg < Sequel::Model(:'trip legs')
|
|
|
802
802
|
when 0 then "SCHED"
|
|
803
803
|
when 1 then "VERI"
|
|
804
804
|
when 10,23 then "CANC"
|
|
805
|
-
when 21 then
|
|
806
|
-
case leg_type_code
|
|
807
|
-
when 7 then "UMAINT"
|
|
808
|
-
when 103 then "SMAINT"
|
|
809
|
-
# when 113 then "RMAINT"
|
|
810
|
-
else "MAINT"
|
|
811
|
-
end
|
|
805
|
+
when 21 then "MAINT"
|
|
812
806
|
when 20 then "SCHED" #really is "RESVD"
|
|
813
|
-
else
|
|
807
|
+
else status
|
|
814
808
|
end
|
|
815
809
|
end
|
|
816
810
|
|