Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hi! I fixed some calls to "sys" for you! #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions autotest.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ var watch = require('nodewatch');
var growl = require('growl');
var Path= require('path');
var jasmine = require('jasmine-node');
var sys = require('sys');
var util = require('util');

growl.binVersion(function(err, version){
if (err) {
sys.puts('You have to install growlnotifier to be able to use autotest');
util.puts('You have to install growlnotifier to be able to use autotest');
process.exit(1);
}

watch.add('./spec').add('./spec/spies').add('./lib').onChange(function(file,prev,curr){

sys.puts('File ' + file + ' modified... Executing tests...');
util.puts('File ' + file + ' modified... Executing tests...');

var specFolder = Path.join(process.cwd(), 'spec');
var libFolder = Path.join(process.cwd(), 'lib');
Expand Down
2 changes: 1 addition & 1 deletion examples/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
// #### Include dependencies

var connFu = require('connfu');
var sys = require('sys');
var util = require('util');
var express = require('express');

// #### Express Configuration
Expand Down
2 changes: 1 addition & 1 deletion lib/client.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ exports = module.exports = client = function(apiKey, logger, options) {
var https = options.useSsl ? require('https') : require('http');
var req = https.request(params, function(res) {
var output = '';
var sys = require('sys');
var util = require('util');

// Read all the data from the response
res.on('data', function(chunk) {
Expand Down
2 changes: 1 addition & 1 deletion spec/attach_handlers_spec.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var connFu = require('../index');
sys = require('sys');
util = require('util');
winston = require('winston');

/**
Expand Down