flight 0.0.1 → 0.0.2
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/flight.gemspec +1 -1
- data/lib/flight.rb +4 -4
- metadata +2 -2
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
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.
|
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
|
|