ar-async-counter-cache 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +1 -0
- data/README +2 -2
- data/VERSION +1 -1
- data/ar-async-counter-cache.gemspec +4 -3
- data/lib/ar_async_counter_cache/increment_counters_job.rb +1 -1
- metadata +4 -3
data/.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pkg
|
data/README
CHANGED
|
@@ -45,9 +45,9 @@ Al you need is resque in your loadpath:
|
|
|
45
45
|
|
|
46
46
|
gem 'resque', '1.9.4'
|
|
47
47
|
|
|
48
|
-
By default, the Resque job is placed on the :
|
|
48
|
+
By default, the Resque job is placed on the :counter_caches queue:
|
|
49
49
|
|
|
50
|
-
@queue = :
|
|
50
|
+
@queue = :counter_caches
|
|
51
51
|
|
|
52
52
|
However, you can change this:
|
|
53
53
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.3
|
|
@@ -5,18 +5,19 @@
|
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ar-async-counter-cache}
|
|
8
|
-
s.version = "0.0.
|
|
8
|
+
s.version = "0.0.3"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Aaron Gibralter"]
|
|
12
|
-
s.date = %q{2010-06-
|
|
12
|
+
s.date = %q{2010-06-17}
|
|
13
13
|
s.description = %q{Increment ActiveRecord's counter cache column asynchronously (using Resque).}
|
|
14
14
|
s.email = %q{aaron.gibralter@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"README"
|
|
17
17
|
]
|
|
18
18
|
s.files = [
|
|
19
|
-
"
|
|
19
|
+
".gitignore",
|
|
20
|
+
"README",
|
|
20
21
|
"Rakefile",
|
|
21
22
|
"VERSION",
|
|
22
23
|
"ar-async-counter-cache.gemspec",
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 0
|
|
8
|
-
-
|
|
9
|
-
version: 0.0.
|
|
8
|
+
- 3
|
|
9
|
+
version: 0.0.3
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Aaron Gibralter
|
|
@@ -14,7 +14,7 @@ autorequire:
|
|
|
14
14
|
bindir: bin
|
|
15
15
|
cert_chain: []
|
|
16
16
|
|
|
17
|
-
date: 2010-06-
|
|
17
|
+
date: 2010-06-17 00:00:00 -04:00
|
|
18
18
|
default_executable:
|
|
19
19
|
dependencies:
|
|
20
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -40,6 +40,7 @@ extensions: []
|
|
|
40
40
|
extra_rdoc_files:
|
|
41
41
|
- README
|
|
42
42
|
files:
|
|
43
|
+
- .gitignore
|
|
43
44
|
- README
|
|
44
45
|
- Rakefile
|
|
45
46
|
- VERSION
|