notifiably_audited 1.0.2 → 1.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.
- checksums.yaml +8 -8
- data/audited-activerecord.gemspec +1 -1
- data/audited.gemspec +1 -1
- data/lib/assets/javascripts/notifiably_audited.js +14 -0
- data/lib/notifiably_audited/engine.rb +14 -0
- data/lib/notifiably_audited/helper.rb +8 -0
- data/notifiably_audited-1.0.0.gem +0 -0
- data/notifiably_audited-1.0.1.gem +0 -0
- data/notifiably_audited-1.0.2.gem +0 -0
- data/notifiably_audited-activerecord-1.0.0.gem +0 -0
- data/notifiably_audited-activerecord-1.0.1.gem +0 -0
- data/notifiably_audited-activerecord-1.0.2.gem +0 -0
- metadata +10 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjIwZmVmNTM3ZjZjMDU4ZGQwYzg5MjEyOWJjMTRjOTQ1OWMxYWVhZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
ZTg2ZjRkOWIxYzFjNzMzZGM2NjJlZmFlZjRkYjE0NjhmN2ZlMmMyOA==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
OWNkZmVjZThlYWJkMTlmN2FiMmQ5NTI4OTJiMjZiNWI2NjhhYzU2ODA1Yjdm
|
10
|
+
OTY4ZWZjZGQ5YmJmNjI4NWNlYTM1YmQ1ZjZlMzRlZGFhMWZhMTg3YjllNjk4
|
11
|
+
MWI4ZGMxN2JmY2QyNGFlN2ZlYzBiODcyYmVkYzM4YmFiY2MyZDk=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
ZDFjOWE1MjJmZmExZjViOTcxN2RhZGEwNzU1OGY5OTVlZTQ0M2JkN2U3ZTc0
|
14
|
+
MzQxYzVkMGRhNmMyYzUwOThkMGU5YjVlOWQ4NjA2YTZhNWU2MDE2YzRiYWY1
|
15
|
+
MzFjN2FmZWE3NDQzOWMwNGQ0NzNiNGFkM2Q0MWEyNDI0NTQ5MjM=
|
data/audited.gemspec
CHANGED
@@ -0,0 +1,14 @@
|
|
1
|
+
/*
|
2
|
+
SeeMore (for jQuery)
|
3
|
+
version: 0.1.0 (16/03/2014)
|
4
|
+
@requires jQuery
|
5
|
+
|
6
|
+
By Senthil Kumar Muthamzihan
|
7
|
+
Examples at http://beckproducts.com
|
8
|
+
|
9
|
+
Licensed under the MIT:
|
10
|
+
http://www.opensource.org/licenses/mit-license.php
|
11
|
+
|
12
|
+
*/
|
13
|
+
//
|
14
|
+
//= require private_pub
|
@@ -0,0 +1,14 @@
|
|
1
|
+
require 'rails'
|
2
|
+
|
3
|
+
module NotifiablyAudited
|
4
|
+
class Engine < ::Rails::Engine
|
5
|
+
initializer 'notifiably_audited' do |app|
|
6
|
+
ActiveSupport.on_load(:action_view) do
|
7
|
+
require "notifiably_audited/helper"
|
8
|
+
class ActionView::Base
|
9
|
+
include NotifiablyAudited::NotifiablyAuditedHelpers
|
10
|
+
end
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: notifiably_audited
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- senthil kumar
|
@@ -129,12 +129,21 @@ files:
|
|
129
129
|
- gemfiles/rails30.gemfile
|
130
130
|
- gemfiles/rails31.gemfile
|
131
131
|
- gemfiles/rails32.gemfile
|
132
|
+
- lib/assets/javascripts/notifiably_audited.js
|
132
133
|
- lib/notifiably_audited-activerecord.rb
|
133
134
|
- lib/notifiably_audited.rb
|
134
135
|
- lib/notifiably_audited/audit.rb
|
135
136
|
- lib/notifiably_audited/auditor.rb
|
137
|
+
- lib/notifiably_audited/engine.rb
|
138
|
+
- lib/notifiably_audited/helper.rb
|
136
139
|
- lib/notifiably_audited/rspec_matchers.rb
|
137
140
|
- lib/notifiably_audited/sweeper.rb
|
141
|
+
- notifiably_audited-1.0.0.gem
|
142
|
+
- notifiably_audited-1.0.1.gem
|
143
|
+
- notifiably_audited-1.0.2.gem
|
144
|
+
- notifiably_audited-activerecord-1.0.0.gem
|
145
|
+
- notifiably_audited-activerecord-1.0.1.gem
|
146
|
+
- notifiably_audited-activerecord-1.0.2.gem
|
138
147
|
- spec/audited_spec_helpers.rb
|
139
148
|
- spec/rails_app/config/application.rb
|
140
149
|
- spec/rails_app/config/database.yml
|