fossil 0.5.16 → 0.5.17
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 +3 -0
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.5.
|
1
|
+
0.5.17
|
data/fossil.gemspec
CHANGED
data/lib/models/trip_leg.rb
CHANGED
@@ -832,6 +832,9 @@ class TripLeg < Sequel::Model(:'trip legs')
|
|
832
832
|
trip__total_statute_miles.to_f/10.0
|
833
833
|
end
|
834
834
|
|
835
|
+
def actual_time_zone_change
|
836
|
+
time_zone_change.to_f/10.0
|
837
|
+
end
|
835
838
|
# converts nautical miles to statute miles with fractional bit
|
836
839
|
# silly because its so similar in value to statute_miles
|
837
840
|
def custom_statute_miles
|