Skip to content

Commit 3d79377

Browse files
author
Amine Mouafik
committed
1.0.0
1 parent 736f0db commit 3d79377

20 files changed

+1172
-1611
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ script:
88
notifications:
99
hipchat:
1010
rooms:
11-
secure: MJ29wr5gRRGhTBQhXGhX/VluQHKYen5PTBpxHHXojpSDwnabKo40HFk0C9V/z+8J96PU1qhpO2nNYg4rALeI7WhdyUXig9xeRIASQHfvEjJSEtA0/P/ug8WfNIPkpumLTu3jq2+rXx4GRtB2moCDVWggq6MCCuIlLb2TTXej5+4=
11+
secure: ggM9E/OQT+P7/KpKikB8kSW3sRiSx9ioU1PTVRgClgcsjvImF2G2uKVZf2m5igD8CIFaPgThzg/DgLjVttoabkiSXL4M1eWr0TQ42ozePZQ57w6YANYwlY62oHGRIPx09vWD3yrvRm0UkYV95DKEQFYNsSkecWf5i3EK4Wb7N70=

README.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
![node-authorize-net](http://ignitiondeck.com/id/wp-content/uploads/2013/08/authorize-net.png)
2+
3+
[![build status](https://travis-ci.org/continuous-software/node-authorize-net.svg?branch=master)](https://travis-ci.org/continuous-software/node-authorize-net)
4+
5+
## Installation
6+
7+
`npm install node-authorize-net`

config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module.exports = {
2-
"API_LOGIN_ID": "2msN9nrBG8K",
3-
"TRANSACTION_KEY": "43jNykM6kC8v87Nb"
2+
"API_LOGIN_ID": "2msN9nrBG8K",
3+
"TRANSACTION_KEY": "43jNykM6kC8v87Nb"
44
};

documentation/AuthorizeNet.md

-192
This file was deleted.

documentation/foot.md

-26
This file was deleted.

documentation/head.md

-29
This file was deleted.

documentation/template/class.mustache

-10
This file was deleted.

documentation/template/file.mustache

-43
This file was deleted.

documentation/template/function.mustache

-25
This file was deleted.

gulpFile.js

-16
This file was deleted.

index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var Authorize = require('./lib/AuthorizeNet.js');
1+
var AuthorizeGateway = require('./lib/AuthorizeNetGateway.js');
22

3-
module.exports = function authorizeFactory(api,transactionKey) {
4-
return new Authorize(api,transactionKey);
5-
};
3+
module.exports = function gatewayFactory(conf) {
4+
return new AuthorizeGateway(conf);
5+
};

0 commit comments

Comments
 (0)