bullet 2.0.0.rc2 → 2.0.0.rc3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.textile +1 -2
- data/README_for_rails2.textile +1 -2
- data/lib/bullet/notification/base.rb +4 -4
- data/lib/bullet/presenter/bullet_logger.rb +1 -1
- data/lib/bullet/presenter/growl.rb +1 -1
- data/lib/bullet/presenter/javascript_alert.rb +1 -1
- data/lib/bullet/presenter/javascript_console.rb +1 -1
- data/lib/bullet/presenter/rails_logger.rb +1 -1
- data/lib/bullet/presenter/xmpp.rb +1 -1
- data/lib/bullet/version.rb +1 -1
- metadata +24 -24
data/README.textile
CHANGED
data/README_for_rails2.textile
CHANGED
@@ -29,13 +29,13 @@ module Bullet
|
|
29
29
|
end
|
30
30
|
|
31
31
|
def present_inline
|
32
|
-
return unless self.presenter.respond_to? :
|
33
|
-
self.presenter.send( :
|
32
|
+
return unless self.presenter.respond_to? :inline_notify
|
33
|
+
self.presenter.send( :inline_notify, self )
|
34
34
|
end
|
35
35
|
|
36
36
|
def present_out_of_channel
|
37
|
-
return unless self.presenter.respond_to? :
|
38
|
-
self.presenter.send( :
|
37
|
+
return unless self.presenter.respond_to? :out_of_channel_notify
|
38
|
+
self.presenter.send( :out_of_channel_notify, self )
|
39
39
|
end
|
40
40
|
|
41
41
|
def eql?( other )
|
data/lib/bullet/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bullet
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 977940588
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 2
|
8
8
|
- 0
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 2.0.0.
|
10
|
+
- rc3
|
11
|
+
version: 2.0.0.rc3
|
12
12
|
platform: ruby
|
13
13
|
authors:
|
14
14
|
- Richard Huang
|
@@ -16,7 +16,7 @@ autorequire:
|
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
18
|
|
19
|
-
date: 2010-
|
19
|
+
date: 2010-11-02 00:00:00 +08:00
|
20
20
|
default_executable:
|
21
21
|
dependencies: []
|
22
22
|
|
@@ -32,37 +32,37 @@ extra_rdoc_files:
|
|
32
32
|
- README.textile
|
33
33
|
- README_for_rails2.textile
|
34
34
|
files:
|
35
|
-
- lib/bullet.rb
|
36
|
-
- lib/bullet/
|
37
|
-
- lib/bullet/
|
38
|
-
- lib/bullet/
|
39
|
-
- lib/bullet/notification/n_plus_one_query.rb
|
40
|
-
- lib/bullet/notification/unused_eager_loading.rb
|
41
|
-
- lib/bullet/version.rb
|
35
|
+
- lib/bullet/action_controller2.rb
|
36
|
+
- lib/bullet/active_record2.rb
|
37
|
+
- lib/bullet/active_record3.rb
|
38
|
+
- lib/bullet/detector/association.rb
|
42
39
|
- lib/bullet/detector/base.rb
|
43
|
-
- lib/bullet/detector/unused_eager_association.rb
|
44
40
|
- lib/bullet/detector/counter.rb
|
45
|
-
- lib/bullet/detector/association.rb
|
46
41
|
- lib/bullet/detector/n_plus_one_query.rb
|
42
|
+
- lib/bullet/detector/unused_eager_association.rb
|
47
43
|
- lib/bullet/detector.rb
|
48
|
-
- lib/bullet/
|
44
|
+
- lib/bullet/notification/base.rb
|
45
|
+
- lib/bullet/notification/counter_cache.rb
|
46
|
+
- lib/bullet/notification/n_plus_one_query.rb
|
47
|
+
- lib/bullet/notification/unused_eager_loading.rb
|
48
|
+
- lib/bullet/notification.rb
|
49
|
+
- lib/bullet/notification_collector.rb
|
49
50
|
- lib/bullet/presenter/base.rb
|
50
|
-
- lib/bullet/presenter/
|
51
|
-
- lib/bullet/presenter/javascript_helpers.rb
|
51
|
+
- lib/bullet/presenter/bullet_logger.rb
|
52
52
|
- lib/bullet/presenter/growl.rb
|
53
|
+
- lib/bullet/presenter/javascript_alert.rb
|
53
54
|
- lib/bullet/presenter/javascript_console.rb
|
54
|
-
- lib/bullet/presenter/
|
55
|
+
- lib/bullet/presenter/javascript_helpers.rb
|
56
|
+
- lib/bullet/presenter/rails_logger.rb
|
55
57
|
- lib/bullet/presenter/xmpp.rb
|
56
|
-
- lib/bullet/
|
57
|
-
- lib/bullet/notification.rb
|
58
|
-
- lib/bullet/active_record2.rb
|
58
|
+
- lib/bullet/presenter.rb
|
59
59
|
- lib/bullet/rack.rb
|
60
|
+
- lib/bullet/registry/association.rb
|
60
61
|
- lib/bullet/registry/base.rb
|
61
62
|
- lib/bullet/registry/object.rb
|
62
|
-
- lib/bullet/registry
|
63
|
-
- lib/bullet/
|
64
|
-
- lib/bullet
|
65
|
-
- lib/bullet/presenter.rb
|
63
|
+
- lib/bullet/registry.rb
|
64
|
+
- lib/bullet/version.rb
|
65
|
+
- lib/bullet.rb
|
66
66
|
- MIT-LICENSE
|
67
67
|
- README.textile
|
68
68
|
- README_for_rails2.textile
|