Skip to content

Commit c908109

Browse files
committed
Remove silly copyright line in docblock comments, update email address, remove copyright year because it is boring to maintain
1 parent c6bd34d commit c908109

22 files changed

+22
-43
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(c) 2010 Chris Boulton <chris.boulton@interspire.com>
1+
(c) Chris Boulton <chris@bigcommerce.com>
22

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

lib/Resque.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
* Base Resque class.
77
*
88
* @package Resque
9-
* @author Chris Boulton <[email protected]>
10-
* @copyright (c) 2010 Chris Boulton
9+
* @author Chris Boulton <[email protected]>
1110
* @license http://www.opensource.org/licenses/mit-license.php
1211
*/
1312
class Resque

lib/Resque/Event.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Resque event/plugin system class
44
*
55
* @package Resque/Event
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Event

lib/Resque/Exception.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Resque exception.
44
*
55
* @package Resque
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Exception extends Exception

lib/Resque/Failure.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Failed Resque job.
66
*
77
* @package Resque/Failure
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Failure

lib/Resque/Failure/Interface.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Interface that all failure backends should implement.
44
*
55
* @package Resque/Failure
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
interface Resque_Failure_Interface

lib/Resque/Failure/Redis.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Redis backend for storing failed Resque jobs.
44
*
55
* @package Resque/Failure
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109

lib/Resque/Job.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
* Resque job.
88
*
99
* @package Resque/Job
10-
* @author Chris Boulton <[email protected]>
11-
* @copyright (c) 2010 Chris Boulton
10+
* @author Chris Boulton <[email protected]>
1211
* @license http://www.opensource.org/licenses/mit-license.php
1312
*/
1413
class Resque_Job

lib/Resque/Job/DirtyExitException.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Runtime exception class for a job that does not exit cleanly.
44
*
55
* @package Resque/Job
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Job_DirtyExitException extends RuntimeException

lib/Resque/Job/DontPerform.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Exception to be thrown if a job should not be performed/run.
44
*
55
* @package Resque/Job
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Job_DontPerform extends Exception

lib/Resque/Job/Status.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Status tracker/information for a job.
44
*
55
* @package Resque/Job
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Job_Status

lib/Resque/Redis.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
* redis. Essentially adds namespace support to Redisent.
1111
*
1212
* @package Resque/Redis
13-
* @author Chris Boulton <[email protected]>
14-
* @copyright (c) 2010 Chris Boulton
13+
* @author Chris Boulton <[email protected]>
1514
* @license http://www.opensource.org/licenses/mit-license.php
1615
*/
1716
class Resque_Redis extends Redisent

lib/Resque/RedisCluster.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@
1010
* redis. Essentially adds namespace support to Redisent.
1111
*
1212
* @package Resque/Redis
13-
* @author Chris Boulton <[email protected]>
14-
* @copyright (c) 2010 Chris Boulton
13+
* @author Chris Boulton <[email protected]>
1514
* @license http://www.opensource.org/licenses/mit-license.php
1615
*/
1716
class Resque_RedisCluster extends RedisentCluster

lib/Resque/Stat.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Resque statistic management (jobs processed, failed, etc)
44
*
55
* @package Resque/Stat
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Stat

lib/Resque/Worker.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99
* off the queues, running them and handling the result.
1010
*
1111
* @package Resque/Worker
12-
* @author Chris Boulton <[email protected]>
13-
* @copyright (c) 2010 Chris Boulton
12+
* @author Chris Boulton <[email protected]>
1413
* @license http://www.opensource.org/licenses/mit-license.php
1514
*/
1615
class Resque_Worker

test/Resque/Tests/EventTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Resque_Event tests.
66
*
77
* @package Resque/Tests
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Tests_EventTest extends Resque_Tests_TestCase

test/Resque/Tests/JobStatusTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Resque_Job_Status tests.
66
*
77
* @package Resque/Tests
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Tests_JobStatusTest extends Resque_Tests_TestCase

test/Resque/Tests/JobTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Resque_Job tests.
66
*
77
* @package Resque/Tests
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Tests_JobTest extends Resque_Tests_TestCase

test/Resque/Tests/StatTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Resque_Stat tests.
66
*
77
* @package Resque/Tests
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Tests_StatTest extends Resque_Tests_TestCase

test/Resque/Tests/TestCase.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Resque test case class. Contains setup and teardown methods.
44
*
55
* @package Resque/Tests
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
class Resque_Tests_TestCase extends PHPUnit_Framework_TestCase

test/Resque/Tests/WorkerTest.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
* Resque_Worker tests.
66
*
77
* @package Resque/Tests
8-
* @author Chris Boulton <[email protected]>
9-
* @copyright (c) 2010 Chris Boulton
8+
* @author Chris Boulton <[email protected]>
109
* @license http://www.opensource.org/licenses/mit-license.php
1110
*/
1211
class Resque_Tests_WorkerTest extends Resque_Tests_TestCase

test/Resque/Tests/bootstrap.php

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
* Resque test bootstrap file - sets up a test environment.
44
*
55
* @package Resque/Tests
6-
* @author Chris Boulton <[email protected]>
7-
* @copyright (c) 2010 Chris Boulton
6+
* @author Chris Boulton <[email protected]>
87
* @license http://www.opensource.org/licenses/mit-license.php
98
*/
109
define('CWD', dirname(__FILE__));

0 commit comments

Comments
 (0)