fossil 0.3.9 → 0.3.10

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 CHANGED
@@ -1 +1 @@
1
- 0.3.9
1
+ 0.3.10
data/fossil.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{fossil}
8
- s.version = "0.3.9"
8
+ s.version = "0.3.10"
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"]
@@ -660,12 +660,12 @@ class TripLeg < Sequel::Model(:'trip legs')
660
660
  column_view :dept_date_act_home, :date, :actual_departure_date_base
661
661
  column_view :depart_time_act_home, :time, :actual_departure_time_base
662
662
  column_def_datetime :actual_departure_date_time_base_old, :'dept date act home', :'depart time act home'
663
- def actual_departure_date_time_base() actual_departure_date_time_gmt + (home_tz_gmt_offset*360); end
663
+ def actual_departure_date_time_base() actual_departure_date_time_gmt + (home_tz_gmt_offset/240); end
664
664
 
665
665
  column_view :arr_date_act_home, :date, :actual_arrival_date_base
666
666
  column_view :arrival_time_act_hom, :time, :actual_arrival_time_base
667
667
  column_def_datetime :actual_arrival_date_time_base_old, :'arr date act home', :'arrival time act hom'
668
- def actual_arrival_date_time_base() actual_arrival_date_time_gmt + (home_tz_gmt_offset*360); end
668
+ def actual_arrival_date_time_base() actual_arrival_date_time_gmt + (home_tz_gmt_offset/240); end
669
669
 
670
670
  column_view :ete, :time
671
671
  column_view :eft, :time
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.9
4
+ version: 0.3.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Lardin, Daniel Sudol