flight 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/flight.gemspec +1 -1
  3. data/lib/flight.rb +4 -4
  4. metadata +2 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.1
1
+ 0.0.2
data/flight.gemspec CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{flight}
8
- s.version = "0.0.1"
8
+ s.version = "0.0.2"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Andy Rossmeissl", "Seamus Abshere", "Ian Hough", "Matt Kling"]
data/lib/flight.rb CHANGED
@@ -113,7 +113,7 @@ module BrighterPlanet
113
113
  end
114
114
 
115
115
  quorum 'default' do
116
- fallback.load_factor
116
+ ::Flight.fallback.load_factor
117
117
  end
118
118
  end
119
119
 
@@ -147,13 +147,13 @@ module BrighterPlanet
147
147
  end
148
148
 
149
149
  quorum 'default' do
150
- fallback.distance_estimate.kilometres.to :nautical_miles
150
+ ::Flight.fallback.distance_estimate.kilometres.to :nautical_miles
151
151
  end
152
152
  end
153
153
 
154
154
  committee :emplanements_per_trip do # per trip
155
155
  quorum 'default' do
156
- fallback.emplanements_per_trip_before_type_cast
156
+ ::Flight.fallback.emplanements_per_trip_before_type_cast
157
157
  end
158
158
  end
159
159
 
@@ -188,7 +188,7 @@ module BrighterPlanet
188
188
 
189
189
  committee :trips do
190
190
  quorum 'default' do
191
- fallback.trips_before_type_cast
191
+ ::Flight.fallback.trips_before_type_cast
192
192
  end
193
193
  end
194
194
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Andy Rossmeissl