airdata 0.3.1 → 0.3.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.
- checksums.yaml +15 -0
- data/README.md +9 -5
- data/lib/airdata/version.rb +1 -1
- data/test/dummy/log/test.log +3 -0
- metadata +76 -92
checksums.yaml
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
---
|
|
2
|
+
!binary "U0hBMQ==":
|
|
3
|
+
metadata.gz: !binary |-
|
|
4
|
+
YTdkYjUxMWRiODFlNTRjNDM3MzllZGYyMmNlNDBlYmE1Y2Y2ZDU3NA==
|
|
5
|
+
data.tar.gz: !binary |-
|
|
6
|
+
MDYyYzgwNjIyYjNmZjk0MWE5OWMxODg5NjY5Y2ZiYzNmZjhmOTk1Mw==
|
|
7
|
+
!binary "U0hBNTEy":
|
|
8
|
+
metadata.gz: !binary |-
|
|
9
|
+
Njk0MGIwMmZjNWE1NTlhOTg3MGI2YTNjYWUyNzFmOTY3OWE4OWMzMThjYTVh
|
|
10
|
+
N2FhNDI0YmVkZGFjODc1MmUxOWYwYzhiODdhZGE3MDBhZDY3Y2EyZGZiMjk0
|
|
11
|
+
ZDZmNTI2ZGE4OTAwODZjYWU3NDVhN2JmNThiZWJhNjk3ZDUzMjU=
|
|
12
|
+
data.tar.gz: !binary |-
|
|
13
|
+
MjdiZDJlNDEwZDI0Mzk4ZWU0NTQ1MzRmOWM3YzU2NDg0NTIwM2IzOGJmNzQy
|
|
14
|
+
MWM1OWE3ODQ1OWE2NjYyNmQ5NDlkM2YyNjUyNmFiYmYxMWI4NTMyNDIyMmNj
|
|
15
|
+
MmNkMmZmMzQ5MDU2YjY2M2Q4MjFlYmE5ODk2ZmExMTBlYzdjNjY=
|
data/README.md
CHANGED
|
@@ -5,10 +5,10 @@ Rails engine for adding aviation related models and data to a web application.
|
|
|
5
5
|
It will add 3 Active Record models to your rails application: `Airports`, `Runways`
|
|
6
6
|
and `Waypoints` (including Navaids). It will add the corresponding database
|
|
7
7
|
structure (migrations) and finally it will populate the corresponding tables of
|
|
8
|
-
your database with [data](#data-stats) (based on *AIRAC cycle
|
|
8
|
+
your database with [data](#data-stats) (based on *AIRAC cycle 1306*.)
|
|
9
9
|
|
|
10
10
|
[](http://travis-ci.org/tarakanbg/airdata)
|
|
11
|
-
[](https://codeclimate.com/github/tarakanbg/airdata)
|
|
12
12
|
[](https://gemnasium.com/tarakanbg/airdata)
|
|
13
13
|
[](http://badge.fury.io/rb/airdata)
|
|
14
14
|
|
|
@@ -19,7 +19,7 @@ and shall not be used for real world navigation and flight as it is unlawful and
|
|
|
19
19
|
|
|
20
20
|
## Installation within parent app
|
|
21
21
|
|
|
22
|
-
Add this gem AND the `activerecord-import` your application's Gemfile:
|
|
22
|
+
Add this gem AND the `activerecord-import` gem to your application's Gemfile:
|
|
23
23
|
|
|
24
24
|
gem 'airdata'
|
|
25
25
|
gem "activerecord-import", "~> 0.3.0" # Required for the data import
|
|
@@ -44,8 +44,8 @@ latest available one by running:
|
|
|
44
44
|
```sh
|
|
45
45
|
rake airdata:cycle # =>
|
|
46
46
|
|
|
47
|
-
Currently instaled AIRAC cycle:
|
|
48
|
-
Latest available AIRAC cycle:
|
|
47
|
+
Currently instaled AIRAC cycle: 1306
|
|
48
|
+
Latest available AIRAC cycle: 1306
|
|
49
49
|
|
|
50
50
|
No update is necessary!
|
|
51
51
|
|
|
@@ -195,6 +195,10 @@ rake airdata:update # Removes old Airdata and installs latest avail
|
|
|
195
195
|
|
|
196
196
|
## Changelog
|
|
197
197
|
|
|
198
|
+
### v. 0.3.2, 15 June 2013
|
|
199
|
+
|
|
200
|
+
* updated dependencies and data
|
|
201
|
+
|
|
198
202
|
### v. 0.3.1, 1 February 2013
|
|
199
203
|
|
|
200
204
|
* moved away from the deprecated github downloads
|
data/lib/airdata/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
1
|
Connecting to database specified by database.yml
|
|
2
2
|
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
|
3
3
|
[1m[35m (0.0ms)[0m rollback transaction
|
|
4
|
+
Connecting to database specified by database.yml
|
|
5
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
metadata
CHANGED
|
@@ -1,68 +1,60 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: airdata
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.3.2
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Svilen Vassilev
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
11
|
+
date: 2013-06-15 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: rails
|
|
16
15
|
requirement: !ruby/object:Gem::Requirement
|
|
17
|
-
none: false
|
|
18
16
|
requirements:
|
|
19
17
|
- - ~>
|
|
20
18
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.2.
|
|
19
|
+
version: 3.2.13
|
|
22
20
|
type: :runtime
|
|
23
21
|
prerelease: false
|
|
24
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
-
none: false
|
|
26
23
|
requirements:
|
|
27
24
|
- - ~>
|
|
28
25
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 3.2.
|
|
26
|
+
version: 3.2.13
|
|
30
27
|
- !ruby/object:Gem::Dependency
|
|
31
28
|
name: curb
|
|
32
29
|
requirement: !ruby/object:Gem::Requirement
|
|
33
|
-
none: false
|
|
34
30
|
requirements:
|
|
35
31
|
- - ~>
|
|
36
32
|
- !ruby/object:Gem::Version
|
|
37
|
-
version: 0.8.
|
|
33
|
+
version: 0.8.4
|
|
38
34
|
type: :runtime
|
|
39
35
|
prerelease: false
|
|
40
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
41
|
-
none: false
|
|
42
37
|
requirements:
|
|
43
38
|
- - ~>
|
|
44
39
|
- !ruby/object:Gem::Version
|
|
45
|
-
version: 0.8.
|
|
40
|
+
version: 0.8.4
|
|
46
41
|
- !ruby/object:Gem::Dependency
|
|
47
42
|
name: activerecord-import
|
|
48
43
|
requirement: !ruby/object:Gem::Requirement
|
|
49
|
-
none: false
|
|
50
44
|
requirements:
|
|
51
45
|
- - ~>
|
|
52
46
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: 0.3.
|
|
47
|
+
version: 0.3.1
|
|
54
48
|
type: :runtime
|
|
55
49
|
prerelease: false
|
|
56
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
|
-
none: false
|
|
58
51
|
requirements:
|
|
59
52
|
- - ~>
|
|
60
53
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: 0.3.
|
|
54
|
+
version: 0.3.1
|
|
62
55
|
- !ruby/object:Gem::Dependency
|
|
63
56
|
name: sqlite3
|
|
64
57
|
requirement: !ruby/object:Gem::Requirement
|
|
65
|
-
none: false
|
|
66
58
|
requirements:
|
|
67
59
|
- - ! '>='
|
|
68
60
|
- !ruby/object:Gem::Version
|
|
@@ -70,7 +62,6 @@ dependencies:
|
|
|
70
62
|
type: :development
|
|
71
63
|
prerelease: false
|
|
72
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
73
|
-
none: false
|
|
74
65
|
requirements:
|
|
75
66
|
- - ! '>='
|
|
76
67
|
- !ruby/object:Gem::Version
|
|
@@ -93,130 +84,123 @@ files:
|
|
|
93
84
|
- app/helpers/airdata/application_helper.rb
|
|
94
85
|
- app/controllers/airdata/application_controller.rb
|
|
95
86
|
- config/routes.rb
|
|
96
|
-
- db/migrate/20120729093219_create_airdata_airports.rb
|
|
97
|
-
- db/migrate/20120729134341_create_airdata_waypoints.rb
|
|
98
87
|
- db/migrate/20120729093820_create_airdata_runways.rb
|
|
99
88
|
- db/migrate/20120730092740_create_airdata_airoptions.rb
|
|
89
|
+
- db/migrate/20120729134341_create_airdata_waypoints.rb
|
|
90
|
+
- db/migrate/20120729093219_create_airdata_airports.rb
|
|
100
91
|
- db/migrate/20130131161413_change_number_format_in_airdata_runways.rb
|
|
101
|
-
- lib/airdata/engine.rb
|
|
102
92
|
- lib/airdata/version.rb
|
|
93
|
+
- lib/airdata/engine.rb
|
|
103
94
|
- lib/airdata.rb
|
|
104
95
|
- lib/tasks/airdata_tasks.rake
|
|
105
96
|
- LICENSE
|
|
106
97
|
- Rakefile
|
|
107
98
|
- README.md
|
|
108
|
-
- test/
|
|
109
|
-
- test/
|
|
110
|
-
- test/
|
|
111
|
-
- test/
|
|
112
|
-
- test/
|
|
113
|
-
- test/
|
|
114
|
-
- test/
|
|
115
|
-
- test/
|
|
116
|
-
- test/
|
|
117
|
-
- test/dummy/config.ru
|
|
99
|
+
- test/airdata_test.rb
|
|
100
|
+
- test/dummy/Rakefile
|
|
101
|
+
- test/dummy/script/rails
|
|
102
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
103
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
104
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
105
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
106
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
107
|
+
- test/dummy/public/500.html
|
|
118
108
|
- test/dummy/public/422.html
|
|
119
|
-
- test/dummy/public/404.html
|
|
120
109
|
- test/dummy/public/favicon.ico
|
|
121
|
-
- test/dummy/public/
|
|
110
|
+
- test/dummy/public/404.html
|
|
111
|
+
- test/dummy/config/environments/test.rb
|
|
112
|
+
- test/dummy/config/environments/production.rb
|
|
113
|
+
- test/dummy/config/environments/development.rb
|
|
122
114
|
- test/dummy/config/locales/en.yml
|
|
123
|
-
- test/dummy/config/
|
|
124
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
125
|
-
- test/dummy/config/initializers/session_store.rb
|
|
115
|
+
- test/dummy/config/environment.rb
|
|
126
116
|
- test/dummy/config/initializers/inflections.rb
|
|
127
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
128
117
|
- test/dummy/config/initializers/secret_token.rb
|
|
129
|
-
- test/dummy/config/
|
|
130
|
-
- test/dummy/config/
|
|
131
|
-
- test/dummy/config/
|
|
132
|
-
- test/dummy/config/
|
|
133
|
-
- test/dummy/config/environments/production.rb
|
|
118
|
+
- test/dummy/config/initializers/session_store.rb
|
|
119
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
120
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
121
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
134
122
|
- test/dummy/config/database.yml
|
|
135
|
-
- test/dummy/config/
|
|
123
|
+
- test/dummy/config/routes.rb
|
|
124
|
+
- test/dummy/config/application.rb
|
|
136
125
|
- test/dummy/config/boot.rb
|
|
137
126
|
- test/dummy/README.rdoc
|
|
138
127
|
- test/dummy/log/test.log
|
|
139
|
-
- test/dummy/app/assets/javascripts/application.js
|
|
140
|
-
- test/dummy/app/assets/stylesheets/application.css
|
|
141
|
-
- test/dummy/app/views/layouts/application.html.erb
|
|
142
|
-
- test/dummy/app/helpers/application_helper.rb
|
|
143
|
-
- test/dummy/app/controllers/application_controller.rb
|
|
144
|
-
- test/dummy/db/test.sqlite3
|
|
145
128
|
- test/dummy/db/schema.rb
|
|
146
|
-
- test/dummy/
|
|
147
|
-
- test/dummy/
|
|
148
|
-
- test/airdata_test.rb
|
|
129
|
+
- test/dummy/db/test.sqlite3
|
|
130
|
+
- test/dummy/config.ru
|
|
149
131
|
- test/test_helper.rb
|
|
132
|
+
- test/unit/airdata/runway_test.rb
|
|
133
|
+
- test/unit/airdata/waypoint_test.rb
|
|
134
|
+
- test/unit/airdata/airport_test.rb
|
|
135
|
+
- test/unit/airdata/airoption_test.rb
|
|
136
|
+
- test/fixtures/airdata/airoptions.yml
|
|
137
|
+
- test/fixtures/airdata/runways.yml
|
|
138
|
+
- test/fixtures/airdata/waypoints.yml
|
|
139
|
+
- test/fixtures/airdata/airports.yml
|
|
140
|
+
- test/integration/navigation_test.rb
|
|
150
141
|
homepage: https://github.com/tarakanbg/airdata
|
|
151
142
|
licenses: []
|
|
143
|
+
metadata: {}
|
|
152
144
|
post_install_message:
|
|
153
145
|
rdoc_options: []
|
|
154
146
|
require_paths:
|
|
155
147
|
- lib
|
|
156
148
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
157
|
-
none: false
|
|
158
149
|
requirements:
|
|
159
150
|
- - ! '>='
|
|
160
151
|
- !ruby/object:Gem::Version
|
|
161
152
|
version: '0'
|
|
162
|
-
segments:
|
|
163
|
-
- 0
|
|
164
|
-
hash: 165008271
|
|
165
153
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
|
-
none: false
|
|
167
154
|
requirements:
|
|
168
155
|
- - ! '>='
|
|
169
156
|
- !ruby/object:Gem::Version
|
|
170
157
|
version: '0'
|
|
171
|
-
segments:
|
|
172
|
-
- 0
|
|
173
|
-
hash: 165008271
|
|
174
158
|
requirements: []
|
|
175
159
|
rubyforge_project:
|
|
176
|
-
rubygems_version:
|
|
160
|
+
rubygems_version: 2.0.3
|
|
177
161
|
signing_key:
|
|
178
|
-
specification_version:
|
|
162
|
+
specification_version: 4
|
|
179
163
|
summary: Rails engine for adding aviation related models and data to your web application
|
|
180
164
|
test_files:
|
|
181
|
-
- test/
|
|
182
|
-
- test/
|
|
183
|
-
- test/
|
|
184
|
-
- test/
|
|
185
|
-
- test/
|
|
186
|
-
- test/
|
|
187
|
-
- test/
|
|
188
|
-
- test/
|
|
189
|
-
- test/
|
|
190
|
-
- test/dummy/config.ru
|
|
165
|
+
- test/airdata_test.rb
|
|
166
|
+
- test/dummy/Rakefile
|
|
167
|
+
- test/dummy/script/rails
|
|
168
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
169
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
170
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
171
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
172
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
173
|
+
- test/dummy/public/500.html
|
|
191
174
|
- test/dummy/public/422.html
|
|
192
|
-
- test/dummy/public/404.html
|
|
193
175
|
- test/dummy/public/favicon.ico
|
|
194
|
-
- test/dummy/public/
|
|
176
|
+
- test/dummy/public/404.html
|
|
177
|
+
- test/dummy/config/environments/test.rb
|
|
178
|
+
- test/dummy/config/environments/production.rb
|
|
179
|
+
- test/dummy/config/environments/development.rb
|
|
195
180
|
- test/dummy/config/locales/en.yml
|
|
196
|
-
- test/dummy/config/
|
|
197
|
-
- test/dummy/config/initializers/mime_types.rb
|
|
198
|
-
- test/dummy/config/initializers/session_store.rb
|
|
181
|
+
- test/dummy/config/environment.rb
|
|
199
182
|
- test/dummy/config/initializers/inflections.rb
|
|
200
|
-
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
201
183
|
- test/dummy/config/initializers/secret_token.rb
|
|
202
|
-
- test/dummy/config/
|
|
203
|
-
- test/dummy/config/
|
|
204
|
-
- test/dummy/config/
|
|
205
|
-
- test/dummy/config/
|
|
206
|
-
- test/dummy/config/environments/production.rb
|
|
184
|
+
- test/dummy/config/initializers/session_store.rb
|
|
185
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
186
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
187
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
207
188
|
- test/dummy/config/database.yml
|
|
208
|
-
- test/dummy/config/
|
|
189
|
+
- test/dummy/config/routes.rb
|
|
190
|
+
- test/dummy/config/application.rb
|
|
209
191
|
- test/dummy/config/boot.rb
|
|
210
192
|
- test/dummy/README.rdoc
|
|
211
193
|
- test/dummy/log/test.log
|
|
212
|
-
- test/dummy/app/assets/javascripts/application.js
|
|
213
|
-
- test/dummy/app/assets/stylesheets/application.css
|
|
214
|
-
- test/dummy/app/views/layouts/application.html.erb
|
|
215
|
-
- test/dummy/app/helpers/application_helper.rb
|
|
216
|
-
- test/dummy/app/controllers/application_controller.rb
|
|
217
|
-
- test/dummy/db/test.sqlite3
|
|
218
194
|
- test/dummy/db/schema.rb
|
|
219
|
-
- test/dummy/
|
|
220
|
-
- test/dummy/
|
|
221
|
-
- test/airdata_test.rb
|
|
195
|
+
- test/dummy/db/test.sqlite3
|
|
196
|
+
- test/dummy/config.ru
|
|
222
197
|
- test/test_helper.rb
|
|
198
|
+
- test/unit/airdata/runway_test.rb
|
|
199
|
+
- test/unit/airdata/waypoint_test.rb
|
|
200
|
+
- test/unit/airdata/airport_test.rb
|
|
201
|
+
- test/unit/airdata/airoption_test.rb
|
|
202
|
+
- test/fixtures/airdata/airoptions.yml
|
|
203
|
+
- test/fixtures/airdata/runways.yml
|
|
204
|
+
- test/fixtures/airdata/waypoints.yml
|
|
205
|
+
- test/fixtures/airdata/airports.yml
|
|
206
|
+
- test/integration/navigation_test.rb
|