fossil 0.3.47 → 0.3.48
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 +2 -2
- data/lib/models/trip_leg.rb +1 -1
- data/lib/sequel/fos_dates.rb +1 -1
- metadata +2 -2
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.48
|
data/fossil.gemspec
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{fossil}
|
|
8
|
-
s.version = "0.3.
|
|
8
|
+
s.version = "0.3.48"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Patrick Lardin, Daniel Sudol"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-05-01}
|
|
13
13
|
s.description = %q{Access FOS/betrieve db with this Sequel based orm wrapper}
|
|
14
14
|
s.email = %q{plardin@xojet.com}
|
|
15
15
|
s.files = [
|
data/lib/models/trip_leg.rb
CHANGED
|
@@ -715,7 +715,7 @@ class TripLeg < Sequel::Model(:'trip legs')
|
|
|
715
715
|
end
|
|
716
716
|
|
|
717
717
|
def is_deadhead?
|
|
718
|
-
status==1 and (deadhead==1 or pax_count==0) and [107, 115, 108, 104].include? leg_type_code
|
|
718
|
+
(status==1 or verify_date > 0) and (deadhead==1 or pax_count==0) and [107, 115, 108, 104].include? leg_type_code
|
|
719
719
|
end
|
|
720
720
|
|
|
721
721
|
# sort on lead_pax value to lead pax = 1 is first and the lead_pax values of 0 are all after
|
data/lib/sequel/fos_dates.rb
CHANGED
|
@@ -21,7 +21,7 @@ module TimeFunctions
|
|
|
21
21
|
return 0 if hour + min == 0
|
|
22
22
|
minutes = hour*60 + min
|
|
23
23
|
val = "#{minutes/60}.#{((100*(minutes.modulo(60)))/60).to_s.rjust(2, '0')}"
|
|
24
|
-
BigDecimal.new(val, 2).round(
|
|
24
|
+
BigDecimal.new(val, 2).round(2).to_s
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
# xos is rounding XOJET STYLE, which is a funky copy of how ipc did it
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fossil
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.48
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Patrick Lardin, Daniel Sudol
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2010-
|
|
12
|
+
date: 2010-05-01 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|