activitylog 1.0.0 → 1.1.0

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 CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- ZjUzY2RlY2E0YTRmNWI3ZmUyNDg2YWI4OWZjMmFmZThhN2E1MzJiNw==
4
+ M2M5MjYxODA3NzljNGUxM2FiNTA3MmI5ZTY2ZmE2NjIyOTMzNjI1NA==
5
5
  data.tar.gz: !binary |-
6
- NTZmZTk0ZTMxNDNkNDIxMjg3M2IxYjI5NTdjZjUyOGE1MjY2ZjgyMA==
6
+ MWU3MDg5NDU0NTk4MzNmMDFjZjZiOTE2MGI4ZTJlY2RhMjY3Zjg2MA==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- NTU1MmRjZWMyMjgzZTA2MzMxMmVhNGIyNzhjNGM2YmM4NzBlNWQ2YzAwODQy
10
- YzJlMzRhYTA1N2ViMzFlZDE1MGZiYjIzOTdiZWYzMWY1MzMxMDRhZjk1OTQw
11
- MDU4ZTFlNWQxODY0YmQwODg5NDBmNDQwOTk3OGZlYjg1Mjc4ZTM=
9
+ OGY5MjJjNDVlZGU5YTQxZTRjZmNiOGRjNTY5NjEyMzBmOWYxMGEyNWU0ZTZh
10
+ MmFmYzViYzUzODRmNTIwYTE3M2UzYzVlZjExYzhmNTVjNTQzM2VjYmM4NDJm
11
+ NTYwMTMwOTJjYWM2MzQ1ZDQ1ZjdmZjY0ZjZjMWFlNmQ5ZDdjOTU=
12
12
  data.tar.gz: !binary |-
13
- MzhkNGE3MDU4M2U4ZjdmNDQyNzJiNTk2NTFmNzYxODI2MzA1ZmVhZGVhOTMy
14
- MGE2MzE4ZjRmOTM5ZmVmYjc2MDg3ZTBhYjNkZTExYzU5MDcyNWU1MTRlZTUw
15
- ZDkzOGU4MTM4OWU2MjQyMDMxODllZTU3ZjZjMDI1NjNhODA0MGM=
13
+ ZDA2YTEyMDMzMDExY2Y0ZDRjNWNiMWI3YTk2NmYwMzNmNzgyM2M3NjRmMzUw
14
+ NGRiMTk3MTFiYjk4M2ViY2QzYWEzNjA4YmFlMjQ4NmE4MWMwZjc2Y2JjNzU3
15
+ MGEzNDdiYmNlZjMwZDg2NDUxM2RlODdiMjMyYTc3NTM4NWEyM2E=
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -0,0 +1,61 @@
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 = "activitylog"
8
+ s.version = "1.1.0"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Jon Erik Suero", "Elan Dubrofsky"]
12
+ s.date = "2013-10-15"
13
+ s.description = "Coming soon"
14
+ s.email = "jonerikdsuero@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.markdown"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE.txt",
24
+ "README.markdown",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "activitylog.gemspec",
28
+ "init.rb",
29
+ "lib/activity_log.rb",
30
+ "lib/activity_log/activity_log.rb",
31
+ "lib/activity_log/activity_logger.rb",
32
+ "lib/generators/activity_log/activity_log_generator.rb",
33
+ "lib/generators/activity_log/templates/create_activity_logs.rb",
34
+ "test/helper.rb",
35
+ "test/test_activity_log.rb"
36
+ ]
37
+ s.homepage = "http://github.com/JonErikDSuero/activitylog"
38
+ s.licenses = ["MIT"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = "2.0.5"
41
+ s.summary = "Provides Activity Log functionality to your code"
42
+
43
+ if s.respond_to? :specification_version then
44
+ s.specification_version = 4
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
48
+ s.add_development_dependency(%q<bundler>, ["~> 1.0"])
49
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.7"])
50
+ else
51
+ s.add_dependency(%q<shoulda>, [">= 0"])
52
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
53
+ s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
54
+ end
55
+ else
56
+ s.add_dependency(%q<shoulda>, [">= 0"])
57
+ s.add_dependency(%q<bundler>, ["~> 1.0"])
58
+ s.add_dependency(%q<jeweler>, ["~> 1.8.7"])
59
+ end
60
+ end
61
+
data/init.rb ADDED
@@ -0,0 +1 @@
1
+ require 'activity_log'
@@ -19,8 +19,4 @@ class ActivityLogGenerator < Rails::Generators::Base
19
19
  def create_migration_file
20
20
  migration_template 'create_activity_logs.rb', 'db/migrate/create_activity_logs.rb'
21
21
  end
22
-
23
- def create_initializer_file
24
- create_file "config/initializers/activity_log.rb", "require 'activity_log'"
25
- end
26
22
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activitylog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jon Erik Suero
@@ -68,6 +68,8 @@ files:
68
68
  - README.markdown
69
69
  - Rakefile
70
70
  - VERSION
71
+ - activitylog.gemspec
72
+ - init.rb
71
73
  - lib/activity_log.rb
72
74
  - lib/activity_log/activity_log.rb
73
75
  - lib/activity_log/activity_logger.rb