auditrail 0.0.1 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile.lock +2 -4
- data/auditrail.gemspec +4 -4
- data/lib/auditrail/version.rb +1 -1
- metadata +6 -6
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
auditrail (0.0.
|
4
|
+
auditrail (0.0.2)
|
5
5
|
activerecord (~> 3.0.1)
|
6
6
|
railties (~> 3.0.1)
|
7
7
|
|
@@ -56,8 +56,6 @@ GEM
|
|
56
56
|
rspec-mocks (2.0.1)
|
57
57
|
rspec-core (~> 2.0.1)
|
58
58
|
rspec-expectations (~> 2.0.1)
|
59
|
-
rspec-rails (2.0.1)
|
60
|
-
rspec (~> 2.0.0)
|
61
59
|
sqlite3-ruby (1.3.2)
|
62
60
|
thor (0.14.6)
|
63
61
|
tzinfo (0.3.23)
|
@@ -69,5 +67,5 @@ DEPENDENCIES
|
|
69
67
|
activerecord (~> 3.0.1)
|
70
68
|
auditrail!
|
71
69
|
railties (~> 3.0.1)
|
72
|
-
rspec
|
70
|
+
rspec (~> 2.0.1)
|
73
71
|
sqlite3-ruby
|
data/auditrail.gemspec
CHANGED
@@ -8,14 +8,14 @@ Gem::Specification.new do |s|
|
|
8
8
|
s.platform = Gem::Platform::RUBY
|
9
9
|
s.authors = ["Luis Galaviz", "Emmanuel Delgado"]
|
10
10
|
s.email = ["emmanuel@crowdint.com", "luis.galaviz@crowdint.com"]
|
11
|
-
s.homepage = ""
|
12
|
-
s.summary = %q{
|
13
|
-
s.description = %q{
|
11
|
+
s.homepage = "http://github.com/crowdint/auditrail"
|
12
|
+
s.summary = %q{An easy and unobtrusive way to track changes on Active Record models}
|
13
|
+
s.description = %q{Track changes on Active Record models based on ActiveSupport::Callbacks and ActiveModel::Dirty}
|
14
14
|
|
15
15
|
s.rubyforge_project = "auditrail"
|
16
16
|
s.add_dependency("activerecord", "~> 3.0.1")
|
17
17
|
s.add_dependency("railties", "~> 3.0.1")
|
18
|
-
s.add_development_dependency("rspec
|
18
|
+
s.add_development_dependency("rspec", "~> 2.0.1")
|
19
19
|
s.add_development_dependency("sqlite3-ruby")
|
20
20
|
|
21
21
|
s.files = `git ls-files`.split("\n")
|
data/lib/auditrail/version.rb
CHANGED
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
|
- Luis Galaviz
|
@@ -49,7 +49,7 @@ dependencies:
|
|
49
49
|
type: :runtime
|
50
50
|
version_requirements: *id002
|
51
51
|
- !ruby/object:Gem::Dependency
|
52
|
-
name: rspec
|
52
|
+
name: rspec
|
53
53
|
prerelease: false
|
54
54
|
requirement: &id003 !ruby/object:Gem::Requirement
|
55
55
|
none: false
|
@@ -76,7 +76,7 @@ dependencies:
|
|
76
76
|
version: "0"
|
77
77
|
type: :development
|
78
78
|
version_requirements: *id004
|
79
|
-
description:
|
79
|
+
description: Track changes on Active Record models based on ActiveSupport::Callbacks and ActiveModel::Dirty
|
80
80
|
email:
|
81
81
|
- emmanuel@crowdint.com
|
82
82
|
- luis.galaviz@crowdint.com
|
@@ -107,7 +107,7 @@ files:
|
|
107
107
|
- spec/spec_helper.rb
|
108
108
|
- spec/support/active_record.rb
|
109
109
|
has_rdoc: true
|
110
|
-
homepage:
|
110
|
+
homepage: http://github.com/crowdint/auditrail
|
111
111
|
licenses: []
|
112
112
|
|
113
113
|
post_install_message:
|
@@ -137,6 +137,6 @@ rubyforge_project: auditrail
|
|
137
137
|
rubygems_version: 1.3.7
|
138
138
|
signing_key:
|
139
139
|
specification_version: 3
|
140
|
-
summary:
|
140
|
+
summary: An easy and unobtrusive way to track changes on Active Record models
|
141
141
|
test_files: []
|
142
142
|
|