Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
osu-trip
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Vernier
osu-trip
Commits
d248bb39
Commit
d248bb39
authored
Apr 07, 2015
by
Michael Vernier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial commit
parents
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
0 deletions
+34
-0
README.md
README.md
+6
-0
osu-trip-tests.js
osu-trip-tests.js
+5
-0
osu-trip.js
osu-trip.js
+1
-0
package.js
package.js
+22
-0
No files found.
README.md
0 → 100644
View file @
d248bb39
# OSU TRIP
## Overview
Meteor package for accessing the Ohio State University BusTime API.
osu-trip-tests.js
0 → 100644
View file @
d248bb39
// Write your tests here!
// Here is an example.
Tinytest
.
add
(
'
example
'
,
function
(
test
)
{
test
.
equal
(
true
,
true
);
});
osu-trip.js
0 → 100644
View file @
d248bb39
// Write your package code here!
package.js
0 → 100644
View file @
d248bb39
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
'
);
});
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment