Skip to content

Commit

Permalink
Removed server, not working
Browse files Browse the repository at this point in the history
  • Loading branch information
andreipopovici committed Feb 5, 2015
1 parent 2799582 commit c82ce69
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
.meteor/local
.meteor/meteorite
.versions
4 changes: 2 additions & 2 deletions .versions
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
adyus:[email protected].5
adyus:[email protected].5_2
[email protected]
[email protected]
[email protected]
Expand All @@ -10,7 +10,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
local-test:adyus:[email protected].5
local-test:adyus:[email protected].5_2
[email protected]
[email protected]
[email protected]
Expand Down
4 changes: 2 additions & 2 deletions adyus:easypost-tests.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
process.env.EASYPOST_KEY = 'cueqNZUb3ldeWTNX7MU3Mel8UXtaAMUi'; // test key from Easypost repo

//Easypost = Npm.require('node-easypost');
Tinytest.add('npm module required', function (test) {
test.assert(Npm.require('node-easypost')(process.env.EASYPOST_KEY));
test.isTrue(Easypost(process.env.EASYPOST_KEY));
});
2 changes: 1 addition & 1 deletion adyus:easypost.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var Easypost = Npm.require('node-easypost');
Easypost = Npm.require('node-easypost');
6 changes: 3 additions & 3 deletions package.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package.describe({
name: 'adyus:easypost',
version: '2.0.5_1',
version: '2.0.5_3',
// Brief, one-line summary of the package.
summary: 'Meteor version of node-easypost',
// URL to the Git repository containing the source code for this package.
Expand All @@ -12,8 +12,8 @@ Package.describe({

Package.onUse(function(api) {
api.versionsFrom('1.0.3.1');
api.export('Easypost', 'server');
api.addFiles('adyus:easypost.js', 'server');
api.export('Easypost');
api.addFiles('adyus:easypost.js');
});

Package.onTest(function(api) {
Expand Down

0 comments on commit c82ce69

Please sign in to comment.