Skip to content

Commit

Permalink
[dist] Assign things to the author and the contributors.
Browse files Browse the repository at this point in the history
  • Loading branch information
indexzero committed Oct 30, 2014
1 parent af8d228 commit 9b6c8f7
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (C) 2010 Nodejitsu Inc.
Copyright (C) 2010 Charlie Robbins & the Contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion lib/forever.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* forever.js: Top level include for the forever module
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/
Expand Down
2 changes: 1 addition & 1 deletion lib/forever/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* cli.js: Handlers for the forever CLI commands.
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,9 @@
"preferGlobal": "true",
"description": "A simple CLI tool for ensuring that a given node script runs continuously (i.e. forever)",
"version": "0.11.1",
"author": "Nodejitsu Inc. <info@nodejitsu.com>",
"author": "Charlie Robbins <charlie.robbins@gmail.com>",
"maintainers": [
"indexzero <charlie@nodejitsu.com>",
"mmalecki <maciej@nodejitsu.com>",
"mmalecki <me@mmalecki.com>",
"avianflu <charlie@charlieistheman.com>"
],
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions test/cli-test
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# cli-test: Tests for forever CLI
#
# (C) 2012 Nodejitsu Inc.
# (C) 2012 Charlie Robbins & the Contributors
# MIT LICENSE
#

Expand All @@ -28,7 +28,7 @@ function spec {

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

# First kill all processes and remove forever directory to ensure clean
# First kill all processes and remove forever directory to ensure clean
# environment
forever stopall
rm -rf ~/.forever
Expand Down
2 changes: 1 addition & 1 deletion test/core/daemonic-inheritance-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* daemonic-inheritance-test.js: Tests for configuration inheritance of forever.startDaemon()
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/
Expand Down
2 changes: 1 addition & 1 deletion test/core/tail-stopall-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* tail-stopall-test.js: Tests for forever.tail() and forever.stopAll()
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/
Expand Down
4 changes: 2 additions & 2 deletions test/fixtures/start-daemon.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
/*
* start-daemon.js: Simple test fixture for spawning log-on-interval.js as a daemon
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/

var path = require('path'),
forever = require('../../lib/forever');

Expand Down
8 changes: 4 additions & 4 deletions test/helpers/macros.js
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
/*
* macros.js: Test macros for the forever module
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/

var assert = require('assert'),
path = require('path'),
spawn = require('child_process').spawn,
nssocket = require('nssocket'),
forever = require('../../lib/forever'),
Worker = require('../../lib/forever/worker').Worker;

var macros = exports;

macros.assertTimes = function (script, times, options) {
options.max = times;

return {
topic: function () {
var child = new (forever.Monitor)(script, options);
Expand Down
2 changes: 1 addition & 1 deletion test/worker/multiple-workers-test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* multiple-workers-test.js: Tests for spawning multiple workers with forever
*
* (C) 2010 Nodejitsu Inc.
* (C) 2010 Charlie Robbins & the Contributors
* MIT LICENCE
*
*/
Expand Down

0 comments on commit 9b6c8f7

Please sign in to comment.