This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /assets/airports/airportLoadList.js 3,400 | |
| /assets/airports/ksea.json 2,910 | |
| /assets/airports/terrain/ksea.geojson 2,903 | |
| /assets/airports/eidw.json 631 | |
| /assets/airports/terrain/eidw.geojson 613 | |
| /assets/airports/kbos.json 410 | |
| /assets/airports/terrain/kbos.geojson 400 | |
| /assets/airports/terrain/mdsd.geojson 345 | |
| /assets/airports/mdsd.json 343 | |
| /assets/airports/ksfo.json 156 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System.Collections.Generic; | |
| public class FormationModel | |
| { | |
| public string formationType; | |
| public List<FormationPointModel> pointList = new List<FormationPointModel>(); | |
| public FormationModel(string type, List<FormationPointModel> pointsToAdd) | |
| { | |
| formationType = type; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source 'https://rubygems.org' | |
| gem 'rails', '4.2.1' | |
| gem 'devise', '3.4.1' | |
| gem 'pg' | |
| gem 'jbuilder', '~> 2.0' | |
| gem 'sdoc', '~> 0.4.0', group: :doc | |
| gem 'omniauth', '~> 1.2.2' | |
| # Use ActiveModel has_secure_password |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env ruby | |
| # A sample Guardfile | |
| # More info at https://github.com/guard/guard#readme | |
| ## Uncomment and set this to only include directories you want to watch | |
| # directories %w(app lib config spec) | |
| ## Uncomment to clear the screen before every task | |
| clearing :on |
NewerOlder