act_as_dirty 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## v0.0.2
2
+
3
+ * corrected the homepage url
4
+
1
5
  ## v0.0.1
2
6
 
3
7
  * initial release
data/act_as_dirty.gemspec CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |s|
7
7
  s.version = ActAsDirty::VERSION
8
8
  s.authors = ["Mathieu Gagne"]
9
9
  s.email = ["mathieu@orangebrule.com"]
10
- s.homepage = "http://github.com/orangebrule/act_as_dirty"
10
+ s.homepage = "http://github.com/orangebrule/act-as-dirty"
11
11
  s.summary = %q{Create a message of all changes made to a record each time it saves using ActiveModel::Dirty. }
12
12
  s.description = %q{Keep a log of what every user does on your system. Very useful in CRM, it would allow you to easily keep track of what every user has done to the record.}
13
13
 
@@ -1,3 +1,3 @@
1
1
  module ActAsDirty
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: act_as_dirty
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-29 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &12388040 !ruby/object:Gem::Requirement
16
+ requirement: &5599080 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *12388040
24
+ version_requirements: *5599080
25
25
  description: Keep a log of what every user does on your system. Very useful in CRM,
26
26
  it would allow you to easily keep track of what every user has done to the record.
27
27
  email:
@@ -38,7 +38,6 @@ files:
38
38
  - README.md
39
39
  - Rakefile
40
40
  - act_as_dirty.gemspec
41
- - act_as_dirty.gemspec~
42
41
  - lib/act_as_dirty.rb
43
42
  - lib/act_as_dirty/active_model.rb
44
43
  - lib/act_as_dirty/active_model/cleaner.rb
@@ -51,7 +50,7 @@ files:
51
50
  - lib/act_as_dirty/version.rb~
52
51
  - spec/act_as_dirty/dirty_spec.rb
53
52
  - spec/spec_helper.rb
54
- homepage: http://github.com/orangebrule/act_as_dirty
53
+ homepage: http://github.com/orangebrule/act-as-dirty
55
54
  licenses: []
56
55
  post_install_message:
57
56
  rdoc_options: []
@@ -1,24 +0,0 @@
1
- # -*- encoding: utf-8 -*-
2
- $:.push File.expand_path("../lib", __FILE__)
3
- require "act_as_dirty/version"
4
-
5
- Gem::Specification.new do |s|
6
- s.name = "act_as_dirty"
7
- s.version = ActAsDirty::VERSION
8
- s.authors = ["Mathieu Gagne"]
9
- s.email = ["mathieu@orangebrule.com"]
10
- s.homepage = ""
11
- s.summary = %q{TODO: Write a gem summary}
12
- s.description = %q{TODO: Write a gem description}
13
-
14
- s.rubyforge_project = "act_as_dirty"
15
-
16
- s.files = `git ls-files`.split("\n")
17
- s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
18
- s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19
- s.require_paths = ["lib"]
20
-
21
- # specify any dependencies here; for example:
22
- # s.add_development_dependency "rspec"
23
- # s.add_runtime_dependency "rest-client"
24
- end