activerecord-callback_notification 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source :rubygems
2
+ gem "activesupport", ">= 3.1.0"
3
+ gem "activerecord", ">= 3.1.0"
4
+
5
+ group :development do
6
+ gem "rspec", "~> 2.8.0"
7
+ gem "rdoc", "~> 3.12"
8
+ gem "bundler", "~> 1.1.0"
9
+ gem "jeweler", "~> 1.8.3"
10
+ gem "simplecov", ">= 0"
11
+ end
12
+ group :test do
13
+ gem 'debugger'
14
+ gem "sqlite3"
15
+ gem 'pry'
16
+ end
@@ -0,0 +1,73 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ activemodel (3.1.4)
5
+ activesupport (= 3.1.4)
6
+ builder (~> 3.0.0)
7
+ i18n (~> 0.6)
8
+ activerecord (3.1.4)
9
+ activemodel (= 3.1.4)
10
+ activesupport (= 3.1.4)
11
+ arel (~> 2.2.3)
12
+ tzinfo (~> 0.3.29)
13
+ activesupport (3.1.4)
14
+ multi_json (~> 1.0)
15
+ arel (2.2.3)
16
+ builder (3.0.0)
17
+ coderay (1.0.6)
18
+ columnize (0.3.6)
19
+ debugger (1.1.1)
20
+ columnize (>= 0.3.1)
21
+ debugger-linecache (~> 1.1)
22
+ debugger-ruby_core_source (~> 1.1)
23
+ debugger-linecache (1.1.1)
24
+ debugger-ruby_core_source (>= 1.1.1)
25
+ debugger-ruby_core_source (1.1.2)
26
+ diff-lcs (1.1.3)
27
+ git (1.2.5)
28
+ i18n (0.6.0)
29
+ jeweler (1.8.3)
30
+ bundler (~> 1.0)
31
+ git (>= 1.2.5)
32
+ rake
33
+ rdoc
34
+ json (1.6.6)
35
+ method_source (0.7.1)
36
+ multi_json (1.3.2)
37
+ pry (0.9.9.3)
38
+ coderay (~> 1.0.5)
39
+ method_source (~> 0.7.1)
40
+ slop (>= 2.4.4, < 3)
41
+ rake (0.9.2.2)
42
+ rdoc (3.12)
43
+ json (~> 1.4)
44
+ rspec (2.8.0)
45
+ rspec-core (~> 2.8.0)
46
+ rspec-expectations (~> 2.8.0)
47
+ rspec-mocks (~> 2.8.0)
48
+ rspec-core (2.8.0)
49
+ rspec-expectations (2.8.0)
50
+ diff-lcs (~> 1.1.2)
51
+ rspec-mocks (2.8.0)
52
+ simplecov (0.6.2)
53
+ multi_json (~> 1.3)
54
+ simplecov-html (~> 0.5.3)
55
+ simplecov-html (0.5.3)
56
+ slop (2.4.4)
57
+ sqlite3 (1.3.6)
58
+ tzinfo (0.3.33)
59
+
60
+ PLATFORMS
61
+ ruby
62
+
63
+ DEPENDENCIES
64
+ activerecord (>= 3.1.0)
65
+ activesupport (>= 3.1.0)
66
+ bundler (~> 1.1.0)
67
+ debugger
68
+ jeweler (~> 1.8.3)
69
+ pry
70
+ rdoc (~> 3.12)
71
+ rspec (~> 2.8.0)
72
+ simplecov
73
+ sqlite3
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Joshua Szmajda
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,44 @@
1
+ # activerecord-callback_notification
2
+
3
+ This gem extends ActiveRecord to send an
4
+ ActiveSupport::Notification for each normal ActiveRecord callback.
5
+
6
+ ## Usage
7
+
8
+ ActiveRecord::Base.notify_callbacks!
9
+
10
+ will setup notifications on all ActiveRecord models. You can also use
11
+ this in a single-model context, like:
12
+
13
+ class Foo < ActiveRecord::Base
14
+ notify_callbacks!
15
+ end
16
+
17
+ Elsewhere you can subscribe to callbacks via
18
+
19
+ ActiveSupport::Notifications.subscribe(/^callback:/) do |*data|
20
+ # data is an array like
21
+ # [ callback name, start timestamp, end timestamp, some id, information hash ]
22
+ interesting_bit = data.last
23
+ interesting_bit[:object] == your_active_record_object
24
+ interesting_bit[:callback] == :the_callback # like :after_save or whatever
25
+ end
26
+
27
+ This is primarily useful in a lazy/omniscient "observer-ish" context. You probably don't
28
+ want to use this system to monitor specific models.
29
+
30
+ ## Contributing to activerecord-callback_notification
31
+
32
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
33
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
34
+ * Fork the project.
35
+ * Start a feature/bugfix branch.
36
+ * Commit and push until you are happy with your contribution.
37
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
38
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
39
+
40
+ ## Copyright
41
+
42
+ Copyright (c) 2012 Optoro, Inc. See LICENSE.txt for
43
+ further details.
44
+
@@ -0,0 +1,49 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "activerecord-callback_notification"
18
+ gem.homepage = "http://github.com/optoro/activerecord-callback_notification"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Instruments all activerecord objects with notifications around callbacks}
21
+ gem.description = %Q{Instruments all activerecord objects with notifications around callbacks}
22
+ gem.email = "josh@optoro.com"
23
+ gem.authors = ["Joshua Szmajda"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ RSpec::Core::RakeTask.new(:rcov) do |spec|
35
+ spec.pattern = 'spec/**/*_spec.rb'
36
+ spec.rcov = true
37
+ end
38
+
39
+ task :default => :spec
40
+
41
+ require 'rdoc/task'
42
+ Rake::RDocTask.new do |rdoc|
43
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
44
+
45
+ rdoc.rdoc_dir = 'rdoc'
46
+ rdoc.title = "activerecord-callback_notification #{version}"
47
+ rdoc.rdoc_files.include('README*')
48
+ rdoc.rdoc_files.include('lib/**/*.rb')
49
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 1.0.0
@@ -0,0 +1,70 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "activerecord-callback_notification"
8
+ s.version = "1.0.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Joshua Szmajda"]
12
+ s.date = "2012-04-25"
13
+ s.description = "Instruments all activerecord objects with notifications around callbacks"
14
+ s.email = "josh@optoro.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.md"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.md",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "activerecord-callback_notification.gemspec",
29
+ "lib/activerecord-callback_notification.rb",
30
+ "spec/activerecord-callback_notification_spec.rb",
31
+ "spec/spec_helper.rb",
32
+ "test.db"
33
+ ]
34
+ s.homepage = "http://github.com/optoro/activerecord-callback_notification"
35
+ s.licenses = ["MIT"]
36
+ s.require_paths = ["lib"]
37
+ s.rubygems_version = "1.8.10"
38
+ s.summary = "Instruments all activerecord objects with notifications around callbacks"
39
+
40
+ if s.respond_to? :specification_version then
41
+ s.specification_version = 3
42
+
43
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
44
+ s.add_runtime_dependency(%q<activesupport>, [">= 3.1.0"])
45
+ s.add_runtime_dependency(%q<activerecord>, [">= 3.1.0"])
46
+ s.add_development_dependency(%q<rspec>, ["~> 2.8.0"])
47
+ s.add_development_dependency(%q<rdoc>, ["~> 3.12"])
48
+ s.add_development_dependency(%q<bundler>, ["~> 1.1.0"])
49
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.3"])
50
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
51
+ else
52
+ s.add_dependency(%q<activesupport>, [">= 3.1.0"])
53
+ s.add_dependency(%q<activerecord>, [">= 3.1.0"])
54
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
55
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
56
+ s.add_dependency(%q<bundler>, ["~> 1.1.0"])
57
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
58
+ s.add_dependency(%q<simplecov>, [">= 0"])
59
+ end
60
+ else
61
+ s.add_dependency(%q<activesupport>, [">= 3.1.0"])
62
+ s.add_dependency(%q<activerecord>, [">= 3.1.0"])
63
+ s.add_dependency(%q<rspec>, ["~> 2.8.0"])
64
+ s.add_dependency(%q<rdoc>, ["~> 3.12"])
65
+ s.add_dependency(%q<bundler>, ["~> 1.1.0"])
66
+ s.add_dependency(%q<jeweler>, ["~> 1.8.3"])
67
+ s.add_dependency(%q<simplecov>, [">= 0"])
68
+ end
69
+ end
70
+
@@ -0,0 +1,30 @@
1
+ require 'active_record'
2
+ require 'active_record/base'
3
+ require 'active_record/callbacks'
4
+
5
+ module ActiveRecord
6
+ module CallbackNotifications
7
+ extend ActiveSupport::Concern
8
+
9
+ module ClassMethods
10
+ def notify_callbacks!
11
+ ActiveRecord::Callbacks::CALLBACKS.each do |callback|
12
+ next if callback.to_s =~ /^around_/
13
+ next unless respond_to?(callback)
14
+ callback_meth = :"_instrument_notifications_for_#{callback}"
15
+ next if respond_to?(callback_meth)
16
+ define_method callback_meth do |&block|
17
+ ActiveSupport::Notifications.instrument("callback:#{callback}",
18
+ :object => self,
19
+ :callback => callback
20
+ )
21
+ true
22
+ end
23
+ send(callback, callback_meth)
24
+ end
25
+ end
26
+ end
27
+ end
28
+ end
29
+
30
+ ActiveRecord::Base.send(:include, ActiveRecord::CallbackNotifications)
@@ -0,0 +1,63 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ class CreateStuff < ActiveRecord::Migration
4
+ def self.up
5
+ create_table "foos" do |t|
6
+ t.string "name"
7
+ end
8
+ create_table "bars" do |t|
9
+ t.string "x"
10
+ end
11
+ end
12
+ end
13
+
14
+ class Foo < ActiveRecord::Base; end
15
+ class Bar < ActiveRecord::Base; end
16
+
17
+ describe "ActiverecordCallbackNotification" do
18
+ before :all do
19
+ ActiveRecord::Base.notify_callbacks!
20
+ db = 'test.db'
21
+ File.unlink db if File.exists? db
22
+ ActiveRecord::Base.establish_connection(
23
+ :adapter => 'sqlite3',
24
+ :database => db
25
+ )
26
+
27
+ CreateStuff.up
28
+ end
29
+ before :all do
30
+ @notifications = []
31
+ ActiveSupport::Notifications.subscribe(/^callback:/) do |*data|
32
+ @notifications << data
33
+ true
34
+ end
35
+ end
36
+ before :each do
37
+ # clear array without messsing with pointer
38
+ @notifications.size.times {@notifications.shift}
39
+ end
40
+
41
+ it "allows the model to save" do
42
+ f = Foo.new(:name => "1")
43
+ f.save!
44
+ end
45
+
46
+ it "works for create" do
47
+ f = Foo.new(:name => "1")
48
+ f.save!
49
+ ac = @notifications.detect{|e| e[0] == 'callback:after_create'}
50
+ ac.should_not be_nil
51
+ ac.last[:object].should == f
52
+ ac.last[:callback].should == :after_create
53
+ end
54
+
55
+ it "works for another model" do
56
+ f = Bar.new(:x => "1")
57
+ f.save!
58
+ ac = @notifications.detect{|e| e[0] == 'callback:after_create'}
59
+ ac.should_not be_nil
60
+ ac.last[:object].should == f
61
+ ac.last[:callback].should == :after_create
62
+ end
63
+ end
@@ -0,0 +1,13 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
3
+ require 'rspec'
4
+ require 'activerecord-callback_notification'
5
+ require 'pry'
6
+
7
+ # Requires supporting files with custom matchers and macros, etc,
8
+ # in ./support/ and its subdirectories.
9
+ Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
10
+
11
+ RSpec.configure do |config|
12
+
13
+ end
data/test.db ADDED
Binary file
metadata ADDED
@@ -0,0 +1,140 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: activerecord-callback_notification
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Joshua Szmajda
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-04-25 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: activesupport
16
+ requirement: &18676660 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: 3.1.0
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *18676660
25
+ - !ruby/object:Gem::Dependency
26
+ name: activerecord
27
+ requirement: &18675620 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: 3.1.0
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: *18675620
36
+ - !ruby/object:Gem::Dependency
37
+ name: rspec
38
+ requirement: &18674960 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 2.8.0
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *18674960
47
+ - !ruby/object:Gem::Dependency
48
+ name: rdoc
49
+ requirement: &18674080 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '3.12'
55
+ type: :development
56
+ prerelease: false
57
+ version_requirements: *18674080
58
+ - !ruby/object:Gem::Dependency
59
+ name: bundler
60
+ requirement: &18673220 !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ~>
64
+ - !ruby/object:Gem::Version
65
+ version: 1.1.0
66
+ type: :development
67
+ prerelease: false
68
+ version_requirements: *18673220
69
+ - !ruby/object:Gem::Dependency
70
+ name: jeweler
71
+ requirement: &18672420 !ruby/object:Gem::Requirement
72
+ none: false
73
+ requirements:
74
+ - - ~>
75
+ - !ruby/object:Gem::Version
76
+ version: 1.8.3
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: *18672420
80
+ - !ruby/object:Gem::Dependency
81
+ name: simplecov
82
+ requirement: &18671420 !ruby/object:Gem::Requirement
83
+ none: false
84
+ requirements:
85
+ - - ! '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ type: :development
89
+ prerelease: false
90
+ version_requirements: *18671420
91
+ description: Instruments all activerecord objects with notifications around callbacks
92
+ email: josh@optoro.com
93
+ executables: []
94
+ extensions: []
95
+ extra_rdoc_files:
96
+ - LICENSE.txt
97
+ - README.md
98
+ files:
99
+ - .document
100
+ - .rspec
101
+ - Gemfile
102
+ - Gemfile.lock
103
+ - LICENSE.txt
104
+ - README.md
105
+ - Rakefile
106
+ - VERSION
107
+ - activerecord-callback_notification.gemspec
108
+ - lib/activerecord-callback_notification.rb
109
+ - spec/activerecord-callback_notification_spec.rb
110
+ - spec/spec_helper.rb
111
+ - test.db
112
+ homepage: http://github.com/optoro/activerecord-callback_notification
113
+ licenses:
114
+ - MIT
115
+ post_install_message:
116
+ rdoc_options: []
117
+ require_paths:
118
+ - lib
119
+ required_ruby_version: !ruby/object:Gem::Requirement
120
+ none: false
121
+ requirements:
122
+ - - ! '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ segments:
126
+ - 0
127
+ hash: -2541234766714767702
128
+ required_rubygems_version: !ruby/object:Gem::Requirement
129
+ none: false
130
+ requirements:
131
+ - - ! '>='
132
+ - !ruby/object:Gem::Version
133
+ version: '0'
134
+ requirements: []
135
+ rubyforge_project:
136
+ rubygems_version: 1.8.10
137
+ signing_key:
138
+ specification_version: 3
139
+ summary: Instruments all activerecord objects with notifications around callbacks
140
+ test_files: []