fossil 0.5.8 → 0.5.9

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.5.8
1
+ 0.5.9
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.5.8"
8
+ s.version = "0.5.9"
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"]
@@ -684,7 +684,9 @@ class TripLeg < Sequel::Model(:'trip legs')
684
684
 
685
685
  column_view :arrival_date_local, :date, :actual_arrival_date_local
686
686
  column_view :arriv_time_act_local, :time, :actual_arrival_time_local
687
- column_def_datetime :actual_arrival_date_time_local, :'arr date act local', :'arriv time act local'
687
+ # used to use 'arr date act local' here, but they are mostly 0 ( zero ) so I switched to
688
+ # 'arrival date - local' 10/27/2010 dan
689
+ column_def_datetime :actual_arrival_date_time_local, :'arrival date - local', :'arriv time act local'
688
690
 
689
691
  column_view :dept_date_gmt, :date, :planned_departure_date_gmt
690
692
  column_view :etd_gmt, :time, :planned_departure_time_gmt
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 5
8
- - 8
9
- version: 0.5.8
8
+ - 9
9
+ version: 0.5.9
10
10
  platform: ruby
11
11
  authors:
12
12
  - Patrick Lardin, Daniel Sudol