acts_as_audited_collection 0.3 → 0.4

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.
metadata CHANGED
@@ -1,11 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: acts_as_audited_collection
3
3
  version: !ruby/object:Gem::Version
4
- prerelease: false
4
+ hash: 3
5
+ prerelease:
5
6
  segments:
6
7
  - 0
7
- - 3
8
- version: "0.3"
8
+ - 4
9
+ version: "0.4"
9
10
  platform: ruby
10
11
  authors:
11
12
  - Shaun Mangelsdorf
@@ -13,43 +14,40 @@ autorequire:
13
14
  bindir: bin
14
15
  cert_chain: []
15
16
 
16
- date: 2010-08-25 00:00:00 +10:00
17
- default_executable:
17
+ date: 2011-08-01 00:00:00 Z
18
18
  dependencies: []
19
19
 
20
- description: |
21
- Adds auditing capabilities to ActiveRecord associations, in a similar fashion to acts_as_audited.
22
-
23
- email: s.mangelsdorf@gmail.com
20
+ description:
21
+ email:
24
22
  executables: []
25
23
 
26
24
  extensions: []
27
25
 
28
26
  extra_rdoc_files:
27
+ - LICENSE
29
28
  - README.md
30
29
  files:
31
- - uninstall.rb
32
- - init.rb
33
- - Rakefile
34
- - README.md
35
- - install.rb
36
30
  - LICENSE
31
+ - README.md
32
+ - Rakefile
37
33
  - generators/audited_collection_migration/USAGE
38
34
  - generators/audited_collection_migration/audited_collection_migration_generator.rb
39
35
  - generators/audited_collection_migration/templates/migration.rb
40
- - lib/acts_as_audited_collection/collection_audit.rb
36
+ - init.rb
37
+ - install.rb
38
+ - lib/active_record/acts/audited_collection.rb
41
39
  - lib/acts_as_audited_collection.rb
40
+ - lib/acts_as_audited_collection/collection_audit.rb
41
+ - lib/acts_as_audited_collection/railtie.rb
42
42
  - lib/tasks/acts_as_audited_collection_tasks.rake
43
- - rails/init.rb
44
- - spec/models.rb
45
- - spec/spec_helper.rb
46
- - spec/debug.log
47
43
  - spec/acts_as_audited_collection_spec.rb
48
- - spec/db/schema.rb
49
44
  - spec/db/database.yml
50
- - spec/db/acts_as_audited_collection.sqlite3.db
51
- has_rdoc: true
52
- homepage: http://smangelsdorf.github.com
45
+ - spec/db/schema.rb
46
+ - spec/debug.log
47
+ - spec/models.rb
48
+ - spec/spec_helper.rb
49
+ - uninstall.rb
50
+ homepage:
53
51
  licenses: []
54
52
 
55
53
  post_install_message:
@@ -58,25 +56,29 @@ rdoc_options: []
58
56
  require_paths:
59
57
  - lib
60
58
  required_ruby_version: !ruby/object:Gem::Requirement
59
+ none: false
61
60
  requirements:
62
61
  - - ">="
63
62
  - !ruby/object:Gem::Version
63
+ hash: 3
64
64
  segments:
65
65
  - 0
66
66
  version: "0"
67
67
  required_rubygems_version: !ruby/object:Gem::Requirement
68
+ none: false
68
69
  requirements:
69
70
  - - ">="
70
71
  - !ruby/object:Gem::Version
72
+ hash: 3
71
73
  segments:
72
74
  - 0
73
75
  version: "0"
74
76
  requirements: []
75
77
 
76
- rubyforge_project: auditcollection
77
- rubygems_version: 1.3.6
78
+ rubyforge_project:
79
+ rubygems_version: 1.8.5
78
80
  signing_key:
79
81
  specification_version: 3
80
- summary: Extends ActiveRecord to allow auditing of associations
82
+ summary: Adds auditing capabilities to ActiveRecord associations, in a similar fashion to acts_as_audited.
81
83
  test_files: []
82
84
 
data/rails/init.rb DELETED
@@ -1,5 +0,0 @@
1
- # Released under the MIT license. See the LICENSE file for details
2
-
3
- require 'acts_as_audited_collection'
4
-
5
- ActiveRecord::Base.send :include, ActiveRecord::Acts::AuditedCollection