Commit d248bb39 authored by Michael Vernier's avatar Michael Vernier

Initial commit

parents
# OSU TRIP
## Overview
Meteor package for accessing the Ohio State University BusTime API.
// Write your tests here!
// Here is an example.
Tinytest.add('example', function (test) {
test.equal(true, true);
});
// Write your package code here!
Package.describe({
name: 'swyphcosmo:osu-trip',
version: '0.0.1',
// Brief, one-line summary of the package.
summary: 'Meteor package for accessing the Ohio State University BusTime API',
// URL to the Git repository containing the source code for this package.
git: 'http://www.swyphcosmo.com/vernierm/osu-trip',
// By default, Meteor will default to using README.md for documentation.
// To avoid submitting documentation, set this field to null.
documentation: 'README.md'
});
Package.onUse(function(api) {
api.versionsFrom('1.1');
api.addFiles('osu-trip.js');
});
Package.onTest(function(api) {
api.use('tinytest');
api.use('swyphcosmo:osu-trip');
api.addFiles('osu-trip-tests.js');
});
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment