From a9429855f819efc3ca3d508338a5adce307427f3 Mon Sep 17 00:00:00 2001 From: indexzero Date: Sat, 8 Oct 2011 20:33:37 -0400 Subject: [PATCH] [dist] Update Copyright to Nodejitsu Inc. --- LICENSE | 2 +- examples/count-timer.js | 2 +- examples/error-on-timer.js | 2 +- examples/spawn-and-error.js | 2 +- lib/forever.js | 2 +- lib/forever/cli.js | 2 +- lib/forever/monitor.js | 2 +- lib/forever/service/adapters/adapter.js | 2 +- lib/forever/service/adapters/initd/index.js | 2 +- lib/forever/service/adapters/systemv/index.js | 2 +- lib/forever/service/cli.js | 2 +- lib/forever/service/index.js | 2 +- lib/forever/service/service.js | 2 +- test/env-spawn-test.js | 2 +- test/fixtures/test-hook.js | 2 +- test/forever-test.js | 2 +- test/helpers.js | 2 +- test/hook-test.js | 2 +- test/multiple-processes-test.js | 2 +- test/service-test.js | 2 +- test/spin-test.js | 2 +- test/watch-test.js | 2 +- 22 files changed, 22 insertions(+), 22 deletions(-) diff --git a/LICENSE b/LICENSE index f257e8d0..dffa1ee5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 Charlie Robbins +Copyright (C) 2010 Nodejitsu Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/examples/count-timer.js b/examples/count-timer.js index ac9e4709..00871272 100644 --- a/examples/count-timer.js +++ b/examples/count-timer.js @@ -1,7 +1,7 @@ /* * count-timer.js: Counts forever on a timer * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/examples/error-on-timer.js b/examples/error-on-timer.js index 66e46ee0..a8a22af7 100644 --- a/examples/error-on-timer.js +++ b/examples/error-on-timer.js @@ -1,7 +1,7 @@ /* * error-on-timer.js: Sample script that errors on a timer * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/examples/spawn-and-error.js b/examples/spawn-and-error.js index be5d9b50..1c979f9e 100644 --- a/examples/spawn-and-error.js +++ b/examples/spawn-and-error.js @@ -1,7 +1,7 @@ /* * spawn-and-error.js: Sample script that spawns a simple child process and errors * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever.js b/lib/forever.js index 8a8bed8f..f82e6c05 100644 --- a/lib/forever.js +++ b/lib/forever.js @@ -1,7 +1,7 @@ /* * forever.js: Top level include for the forever module * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/cli.js b/lib/forever/cli.js index 39b468e9..fbb95226 100644 --- a/lib/forever/cli.js +++ b/lib/forever/cli.js @@ -1,7 +1,7 @@ /* * cli.js: Handlers for the forever CLI commands. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/monitor.js b/lib/forever/monitor.js index 72ebfea5..a676a75c 100644 --- a/lib/forever/monitor.js +++ b/lib/forever/monitor.js @@ -1,7 +1,7 @@ /* * monitor.js: Core functionality for the Monitor object. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/adapters/adapter.js b/lib/forever/service/adapters/adapter.js index 93414947..f4f2c5f5 100644 --- a/lib/forever/service/adapters/adapter.js +++ b/lib/forever/service/adapters/adapter.js @@ -1,7 +1,7 @@ /* * adapter.js: Abstract base class used by foreverd service adapters * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/adapters/initd/index.js b/lib/forever/service/adapters/initd/index.js index 318a0128..1162d378 100644 --- a/lib/forever/service/adapters/initd/index.js +++ b/lib/forever/service/adapters/initd/index.js @@ -1,7 +1,7 @@ /* * index.js: Top-level include for the init.d foreverd service adapter. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/adapters/systemv/index.js b/lib/forever/service/adapters/systemv/index.js index 19e2a684..3b9de268 100644 --- a/lib/forever/service/adapters/systemv/index.js +++ b/lib/forever/service/adapters/systemv/index.js @@ -1,7 +1,7 @@ /* * index.js: Top-level include for the systemv foreverd service adapter * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/cli.js b/lib/forever/service/cli.js index bba5315e..681648c4 100644 --- a/lib/forever/service/cli.js +++ b/lib/forever/service/cli.js @@ -1,7 +1,7 @@ /* * cli.js: Handlers for the foreverd CLI commands. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/index.js b/lib/forever/service/index.js index 6012652a..5addced3 100644 --- a/lib/forever/service/index.js +++ b/lib/forever/service/index.js @@ -1,7 +1,7 @@ /* * index.js: Top-level include for the `forever.service` module. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/lib/forever/service/service.js b/lib/forever/service/service.js index 83eaa0ab..c17d13f8 100644 --- a/lib/forever/service/service.js +++ b/lib/forever/service/service.js @@ -1,7 +1,7 @@ /* * service.js: Object responsible for managing the foreverd daemon. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/env-spawn-test.js b/test/env-spawn-test.js index f58ec942..c8ba258f 100644 --- a/test/env-spawn-test.js +++ b/test/env-spawn-test.js @@ -1,7 +1,7 @@ /* * env-spawn-test.js: Tests for supporting environment variables in the forever module * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/fixtures/test-hook.js b/test/fixtures/test-hook.js index 42132ae2..2cbf2fe1 100644 --- a/test/fixtures/test-hook.js +++ b/test/fixtures/test-hook.js @@ -1,7 +1,7 @@ /* * test-hook.js: Test hook fixture for raising an event on forever.Monitor `exit` * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/forever-test.js b/test/forever-test.js index 02ba5371..f4cf7d93 100644 --- a/test/forever-test.js +++ b/test/forever-test.js @@ -1,7 +1,7 @@ /* * forever-test.js: Tests for forever module * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/helpers.js b/test/helpers.js index 14b44033..3d61a6a4 100644 --- a/test/helpers.js +++ b/test/helpers.js @@ -1,7 +1,7 @@ /* * helpers.js: Test helpers for the forever module * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/hook-test.js b/test/hook-test.js index 8381072e..b14eedf0 100644 --- a/test/hook-test.js +++ b/test/hook-test.js @@ -1,7 +1,7 @@ /* * hook-test.js: Tests for forever-based hooks * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/multiple-processes-test.js b/test/multiple-processes-test.js index d44dee4e..5913ced6 100644 --- a/test/multiple-processes-test.js +++ b/test/multiple-processes-test.js @@ -1,7 +1,7 @@ /* * multiple-processes-test.js: Tests for spawning multiple processes with forever * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/service-test.js b/test/service-test.js index a355f4c5..71983b8e 100644 --- a/test/service-test.js +++ b/test/service-test.js @@ -1,7 +1,7 @@ /* * service-test.js: Tests for the forever.service module * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/spin-test.js b/test/spin-test.js index d60935b7..f294215d 100644 --- a/test/spin-test.js +++ b/test/spin-test.js @@ -1,7 +1,7 @@ /* * spin-test.js: Tests for spin restarts in forever. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENCE * */ diff --git a/test/watch-test.js b/test/watch-test.js index 5c4dc3e9..a87b2b24 100644 --- a/test/watch-test.js +++ b/test/watch-test.js @@ -1,7 +1,7 @@ /* * watch-test.js: Tests for restarting forever processes when a file changes. * - * (C) 2010 Charlie Robbins + * (C) 2010 Nodejitsu Inc. * MIT LICENSE * */