This repository has been archived by the owner on Jan 15, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #41 from unbornchikken/iojs3
io.js 3 / node 4 / nan 2.1 support (DONE)
- Loading branch information
Showing
5 changed files
with
658 additions
and
510 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.idea | ||
*.node | ||
src/build | ||
src/.lock-wscript | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,34 @@ | ||
language: "node_js" | ||
node_js: | ||
- '0.8' | ||
- '0.10' | ||
- '0.11' | ||
script: node test/test.js | ||
os: | ||
- linux | ||
- osx | ||
sudo: false | ||
language: cpp | ||
addons: | ||
apt: | ||
sources: | ||
- ubuntu-toolchain-r-test | ||
packages: | ||
- g++-4.8 | ||
env: | ||
matrix: | ||
- TRAVIS_NODE_VERSION="0.10" | ||
- TRAVIS_NODE_VERSION="0.12" | ||
- TRAVIS_NODE_VERSION="2" | ||
- TRAVIS_NODE_VERSION="4" | ||
|
||
install: | ||
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION | ||
- if [[ $TRAVIS_OS_NAME == "linux" ]]; then export CXX=g++-4.8; fi | ||
- $CXX --version | ||
- PATH="`npm bin`:`npm bin -g`:$PATH" | ||
# Node 0.8 comes with a too obsolete npm | ||
- if [[ "`node --version`" =~ ^v0\.8\. ]]; then npm install -g [email protected] ; fi | ||
# Install dependencies and build | ||
- npm install | ||
|
||
script: | ||
# Output useful info for debugging | ||
- node --version | ||
- npm --version | ||
# Run tests | ||
- node test/test.js |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,17 +6,19 @@ | |
"interceptor", | ||
"proxy", | ||
"overload", | ||
"__noSuchMethod__" | ||
"__noSuchMethod__", | ||
"es6" | ||
], | ||
"dependencies": { | ||
"bindings": "1.1.x", | ||
"nan": "^1.7.0" | ||
"bindings": "1", | ||
"nan": "^2.1.0" | ||
}, | ||
"contributors": [ | ||
"Sam Shull <http://www.google.com/profiles/brickysam26>", | ||
"richardms <https://github.com/richardms>", | ||
"Andreas Botsikas <http://webinos.org/bio-andreas-botsikas/>", | ||
"Kenneth Bentley <[email protected]>" | ||
"Kenneth Bentley <[email protected]>", | ||
"Gabor Mezo <https://github.com/unbornchikken>" | ||
], | ||
"licenses": [ | ||
{ | ||
|
Oops, something went wrong.