Skip to content

Commit 9b6c8f7

Browse files
committed
[dist] Assign things to the author and the contributors.
1 parent af8d228 commit 9b6c8f7

File tree

10 files changed

+16
-17
lines changed

10 files changed

+16
-17
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2010 Nodejitsu Inc.
1+
Copyright (C) 2010 Charlie Robbins & the Contributors
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal

lib/forever.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* forever.js: Top level include for the forever module
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/

lib/forever/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* cli.js: Handlers for the forever CLI commands.
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/

package.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,9 @@
33
"preferGlobal": "true",
44
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
55
"version": "0.11.1",
6-
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
6+
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
77
"maintainers": [
8-
"indexzero <[email protected]>",
9-
"mmalecki <[email protected]>",
8+
"mmalecki <[email protected]>",
109
"avianflu <[email protected]>"
1110
],
1211
"repository": {

test/cli-test

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# cli-test: Tests for forever CLI
55
#
6-
# (C) 2012 Nodejitsu Inc.
6+
# (C) 2012 Charlie Robbins & the Contributors
77
# MIT LICENSE
88
#
99

@@ -28,7 +28,7 @@ function spec {
2828

2929
echo "\033[1mRunning tests:\033[0m"
3030

31-
# First kill all processes and remove forever directory to ensure clean
31+
# First kill all processes and remove forever directory to ensure clean
3232
# environment
3333
forever stopall
3434
rm -rf ~/.forever

test/core/daemonic-inheritance-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* daemonic-inheritance-test.js: Tests for configuration inheritance of forever.startDaemon()
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/

test/core/tail-stopall-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* tail-stopall-test.js: Tests for forever.tail() and forever.stopAll()
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/

test/fixtures/start-daemon.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
* start-daemon.js: Simple test fixture for spawning log-on-interval.js as a daemon
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/
8-
8+
99
var path = require('path'),
1010
forever = require('../../lib/forever');
1111

test/helpers/macros.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
11
/*
22
* macros.js: Test macros for the forever module
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/
8-
8+
99
var assert = require('assert'),
1010
path = require('path'),
1111
spawn = require('child_process').spawn,
1212
nssocket = require('nssocket'),
1313
forever = require('../../lib/forever'),
1414
Worker = require('../../lib/forever/worker').Worker;
15-
15+
1616
var macros = exports;
1717

1818
macros.assertTimes = function (script, times, options) {
1919
options.max = times;
20-
20+
2121
return {
2222
topic: function () {
2323
var child = new (forever.Monitor)(script, options);

test/worker/multiple-workers-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* multiple-workers-test.js: Tests for spawning multiple workers with forever
33
*
4-
* (C) 2010 Nodejitsu Inc.
4+
* (C) 2010 Charlie Robbins & the Contributors
55
* MIT LICENCE
66
*
77
*/

0 commit comments

Comments
 (0)