Skip to content

Commit ab9cc63

Browse files
author
Ryan R. Smith
committed
rename use of Queue Classic in favor of queue_classic
1 parent 33b8bc8 commit ab9cc63

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

doc/html/readme.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<h1>Queue Classic</h1>
1+
<h1>queue_classic</h1>
22

3-
<p>1.0.0</p>
3+
<p>v1.0.0</p>
44

5-
<p>Queue Classic is a PostgreSQL-backed queueing library that is focused on
5+
<p>queue_classic is a PostgreSQL-backed queueing library that is focused on
66
concurrent job locking, minimizing database load &amp; providing a simple &amp;
77
intuitive user experience.</p>
88

9-
<p>Queue Classic Features:</p>
9+
<p>queue_classic features:</p>
1010

1111
<ul>
1212
<li>Support for multiple queues with heterogeneous workers</li>
@@ -32,7 +32,7 @@ <h2>Quick Start</h2>
3232
$ ruby -r queue_classic -e &quot;QC::Worker.new.start&quot;
3333
</code></pre>
3434

35-
<h2>Hacking on Queue Classic</h2>
35+
<h2>Hacking on queue_classic</h2>
3636

3737
<h3>Dependencies</h3>
3838

doc/html/scheduling.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ <h1>Scheduling Jobs</h1>
22

33
<p>Many popular queueing solution provide support for scheduling. Features like
44
Redis-Scheduler and the run<em>at column in DJ are very important to the web
5-
application developer. While Queue Classic does not offer any sort of scheduling
5+
application developer. While queue</em>classic does not offer any sort of scheduling
66
features, I do not discount the importance of the concept. However, it is my
77
belief that a scheduler has no place in a queueing library, to that end I will
8-
show you how to schedule jobs using queue</em>classic and the clockwork gem.</p>
8+
show you how to schedule jobs using queue_classic and the clockwork gem.</p>
99

1010
<h2>Example</h2>
1111

doc/html/tipsandtricks.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ <h2>Dispatching new jobs to workers without new code</h2>
66
thousand records. The tough part of this situation is that I needed to ensure
77
the ActiveRecord callbacks were made on these objects thus making a simple SQL
88
statement unfeasible. Also, I didn't want to wait all day to select and destroy
9-
these objects. Queue Classic to the rescue! (no pun intended)</p>
9+
these objects. queue_classic to the rescue! (no pun intended)</p>
1010

11-
<p>The API of Queue Classic enables you to quickly dispatch jobs to workers. In my
11+
<p>The API of queue_classic enables you to quickly dispatch jobs to workers. In my
1212
case I wanted to call <code>Invoice.destroy(id)</code> a few thousand times. I fired up a
1313
heroku console session and executed this line:</p>
1414

doc/scheduling.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Many popular queueing solution provide support for scheduling. Features like
44
Redis-Scheduler and the run_at column in DJ are very important to the web
5-
application developer. While Queue Classic does not offer any sort of scheduling
5+
application developer. While queue_classic does not offer any sort of scheduling
66
features, I do not discount the importance of the concept. However, it is my
77
belief that a scheduler has no place in a queueing library, to that end I will
88
show you how to schedule jobs using queue_classic and the clockwork gem.

doc/tipsandtricks.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ The other day I found myself in a position in which I needed to delete a few
77
thousand records. The tough part of this situation is that I needed to ensure
88
the ActiveRecord callbacks were made on these objects thus making a simple SQL
99
statement unfeasible. Also, I didn't want to wait all day to select and destroy
10-
these objects. Queue Classic to the rescue! (no pun intended)
10+
these objects. queue_classic to the rescue! (no pun intended)
1111

12-
The API of Queue Classic enables you to quickly dispatch jobs to workers. In my
12+
The API of queue_classic enables you to quickly dispatch jobs to workers. In my
1313
case I wanted to call `Invoice.destroy(id)` a few thousand times. I fired up a
1414
heroku console session and executed this line:
1515

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# Queue Classic
2-
1.0.0
1+
# queue_classic
2+
v1.0.0
33

4-
Queue Classic is a PostgreSQL-backed queueing library that is focused on
4+
queue_classic is a PostgreSQL-backed queueing library that is focused on
55
concurrent job locking, minimizing database load & providing a simple &
66
intuitive user experience.
77

8-
Queue Classic Features:
8+
queue_classic features:
99

1010
* Support for multiple queues with heterogeneous workers
1111
* Utilization of Postgres' PUB/SUB
@@ -30,7 +30,7 @@ See doc/installation.md for Rails instructions
3030
$ ruby -r queue_classic -e "QC::Worker.new.start"
3131
```
3232

33-
## Hacking on Queue Classic
33+
## Hacking on queue_classic
3434

3535
### Dependencies
3636

0 commit comments

Comments
 (0)