fossil 0.3.2 → 0.3.3

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.2
1
+ 0.3.3
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.2"
8
+ s.version = "0.3.3"
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"]
@@ -3,7 +3,7 @@ class CrewLeg < Sequel::Model(:'crew legs')
3
3
 
4
4
  # Many to one associations with composite primary keys
5
5
  n_to_o :trip_legs, :class=>:TripLeg, :prefix=>'trip leg'
6
- many_to_one :crew_name, :class=>:Personel, :key=>:crew, :primary_key=>:employee_id
6
+ many_to_one :crew_name, :class=>:Personnel, :key=>:crew, :primary_key=>:employee_id
7
7
 
8
8
  # Code associations
9
9
  code_association :position_code, :'position', :position
@@ -6,7 +6,7 @@ class TripLeg < Sequel::Model(:'trip legs')
6
6
  many_to_one :aircraft_type, :class=>:AircraftType, :key=>:'aircraft type id', :primary_key=>:'aircraft type id'
7
7
  many_to_one :locked_by, :class=>:User, :key=>:'locked by - user id', :primary_key=>:'users initials'
8
8
  many_to_one :leg_rate_aircraft, :class=>:Aircraft, :key=>:'leg rate ac id', :primary_key=>:'aircraft id'
9
- many_to_one :authorizer_name, :class=>:Personel, :key=>:authorization, :primary_key=>:employee_id
9
+ many_to_one :authorizer_name, :class=>:Personnel, :key=>:authorization, :primary_key=>:employee_id
10
10
 
11
11
  # Many to one associations with composite primary keys
12
12
  n_to_o :trip, :class=>:Trip, :prefix=>'trips'
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.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Patrick Lardin, Daniel Sudol