event_horizon 0.0.9 → 0.0.10
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.
- data/Rakefile +2 -2
- data/VERSION +1 -1
- data/event_horizon.gemspec +31 -38
- metadata +39 -65
- data/.gitignore +0 -21
data/Rakefile
CHANGED
@@ -10,8 +10,8 @@ begin
|
|
10
10
|
gem.email = "jzajpt@blueberryapps.com"
|
11
11
|
gem.homepage = "http://github.com/jzajpt/event_horizon"
|
12
12
|
gem.authors = ["Jiri Zajpt"]
|
13
|
-
gem.add_development_dependency "rspec", "~> 2.0
|
14
|
-
gem.add_dependency "activesupport", "~> 3.0
|
13
|
+
gem.add_development_dependency "rspec", "~> 2.0"
|
14
|
+
gem.add_dependency "activesupport", "~> 3.0"
|
15
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
16
|
end
|
17
17
|
Jeweler::GemcutterTasks.new
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.10
|
data/event_horizon.gemspec
CHANGED
@@ -1,64 +1,57 @@
|
|
1
1
|
# Generated by jeweler
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
4
|
# -*- encoding: utf-8 -*-
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
|
-
s.name =
|
8
|
-
s.version = "0.0.
|
7
|
+
s.name = "event_horizon"
|
8
|
+
s.version = "0.0.10"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jiri Zajpt"]
|
12
|
-
s.date =
|
13
|
-
s.description =
|
14
|
-
s.email =
|
12
|
+
s.date = "2011-12-05"
|
13
|
+
s.description = "Simple plugin for logging events in Rails applications using Mongoid ODM."
|
14
|
+
s.email = "jzajpt@blueberryapps.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE",
|
17
|
-
|
17
|
+
"README.rdoc"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
"lib/event_horizon/orm_support.rb",
|
35
|
-
"spec/event_horizon_spec.rb",
|
36
|
-
"spec/spec_helper.rb"
|
37
|
-
]
|
38
|
-
s.homepage = %q{http://github.com/jzajpt/event_horizon}
|
39
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
40
|
-
s.require_paths = ["lib"]
|
41
|
-
s.rubygems_version = %q{1.3.7}
|
42
|
-
s.summary = %q{Simple plugin for logging events in Rails applications.}
|
43
|
-
s.test_files = [
|
21
|
+
"LICENSE",
|
22
|
+
"README.rdoc",
|
23
|
+
"Rakefile",
|
24
|
+
"VERSION",
|
25
|
+
"app/models/event.rb",
|
26
|
+
"event_horizon.gemspec",
|
27
|
+
"lib/event_horizon.rb",
|
28
|
+
"lib/event_horizon/events.rb",
|
29
|
+
"lib/event_horizon/helpers.rb",
|
30
|
+
"lib/event_horizon/helpers/event_horizon_helper.rb",
|
31
|
+
"lib/event_horizon/mongoid_support/document.rb",
|
32
|
+
"lib/event_horizon/mongoid_support/event.rb",
|
33
|
+
"lib/event_horizon/orm_support.rb",
|
44
34
|
"spec/event_horizon_spec.rb",
|
45
|
-
|
35
|
+
"spec/spec_helper.rb"
|
46
36
|
]
|
37
|
+
s.homepage = "http://github.com/jzajpt/event_horizon"
|
38
|
+
s.require_paths = ["lib"]
|
39
|
+
s.rubygems_version = "1.8.10"
|
40
|
+
s.summary = "Simple plugin for logging events in Rails applications."
|
47
41
|
|
48
42
|
if s.respond_to? :specification_version then
|
49
|
-
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
50
43
|
s.specification_version = 3
|
51
44
|
|
52
45
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
53
|
-
s.add_development_dependency(%q<rspec>, ["~> 2.0
|
54
|
-
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0
|
46
|
+
s.add_development_dependency(%q<rspec>, ["~> 2.0"])
|
47
|
+
s.add_runtime_dependency(%q<activesupport>, ["~> 3.0"])
|
55
48
|
else
|
56
|
-
s.add_dependency(%q<rspec>, ["~> 2.0
|
57
|
-
s.add_dependency(%q<activesupport>, ["~> 3.0
|
49
|
+
s.add_dependency(%q<rspec>, ["~> 2.0"])
|
50
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0"])
|
58
51
|
end
|
59
52
|
else
|
60
|
-
s.add_dependency(%q<rspec>, ["~> 2.0
|
61
|
-
s.add_dependency(%q<activesupport>, ["~> 3.0
|
53
|
+
s.add_dependency(%q<rspec>, ["~> 2.0"])
|
54
|
+
s.add_dependency(%q<activesupport>, ["~> 3.0"])
|
62
55
|
end
|
63
56
|
end
|
64
57
|
|
metadata
CHANGED
@@ -1,64 +1,48 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: event_horizon
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
5
|
-
|
6
|
-
- 0
|
7
|
-
- 0
|
8
|
-
- 9
|
9
|
-
version: 0.0.9
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.10
|
5
|
+
prerelease:
|
10
6
|
platform: ruby
|
11
|
-
authors:
|
7
|
+
authors:
|
12
8
|
- Jiri Zajpt
|
13
9
|
autorequire:
|
14
10
|
bindir: bin
|
15
11
|
cert_chain: []
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
dependencies:
|
20
|
-
- !ruby/object:Gem::Dependency
|
12
|
+
date: 2011-12-05 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
21
15
|
name: rspec
|
22
|
-
|
23
|
-
requirement: &id001 !ruby/object:Gem::Requirement
|
16
|
+
requirement: &70216814316140 !ruby/object:Gem::Requirement
|
24
17
|
none: false
|
25
|
-
requirements:
|
18
|
+
requirements:
|
26
19
|
- - ~>
|
27
|
-
- !ruby/object:Gem::Version
|
28
|
-
|
29
|
-
- 2
|
30
|
-
- 0
|
31
|
-
- 0
|
32
|
-
version: 2.0.0
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '2.0'
|
33
22
|
type: :development
|
34
|
-
version_requirements: *id001
|
35
|
-
- !ruby/object:Gem::Dependency
|
36
|
-
name: activesupport
|
37
23
|
prerelease: false
|
38
|
-
|
24
|
+
version_requirements: *70216814316140
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: activesupport
|
27
|
+
requirement: &70216814330760 !ruby/object:Gem::Requirement
|
39
28
|
none: false
|
40
|
-
requirements:
|
29
|
+
requirements:
|
41
30
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
43
|
-
|
44
|
-
- 3
|
45
|
-
- 0
|
46
|
-
- 0
|
47
|
-
version: 3.0.0
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '3.0'
|
48
33
|
type: :runtime
|
49
|
-
|
50
|
-
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *70216814330760
|
36
|
+
description: Simple plugin for logging events in Rails applications using Mongoid
|
37
|
+
ODM.
|
51
38
|
email: jzajpt@blueberryapps.com
|
52
39
|
executables: []
|
53
|
-
|
54
40
|
extensions: []
|
55
|
-
|
56
|
-
extra_rdoc_files:
|
41
|
+
extra_rdoc_files:
|
57
42
|
- LICENSE
|
58
43
|
- README.rdoc
|
59
|
-
files:
|
44
|
+
files:
|
60
45
|
- .document
|
61
|
-
- .gitignore
|
62
46
|
- LICENSE
|
63
47
|
- README.rdoc
|
64
48
|
- Rakefile
|
@@ -74,38 +58,28 @@ files:
|
|
74
58
|
- lib/event_horizon/orm_support.rb
|
75
59
|
- spec/event_horizon_spec.rb
|
76
60
|
- spec/spec_helper.rb
|
77
|
-
has_rdoc: true
|
78
61
|
homepage: http://github.com/jzajpt/event_horizon
|
79
62
|
licenses: []
|
80
|
-
|
81
63
|
post_install_message:
|
82
|
-
rdoc_options:
|
83
|
-
|
84
|
-
require_paths:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
85
66
|
- lib
|
86
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
87
68
|
none: false
|
88
|
-
requirements:
|
89
|
-
- -
|
90
|
-
- !ruby/object:Gem::Version
|
91
|
-
|
92
|
-
|
93
|
-
version: "0"
|
94
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
69
|
+
requirements:
|
70
|
+
- - ! '>='
|
71
|
+
- !ruby/object:Gem::Version
|
72
|
+
version: '0'
|
73
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
95
74
|
none: false
|
96
|
-
requirements:
|
97
|
-
- -
|
98
|
-
- !ruby/object:Gem::Version
|
99
|
-
|
100
|
-
- 0
|
101
|
-
version: "0"
|
75
|
+
requirements:
|
76
|
+
- - ! '>='
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: '0'
|
102
79
|
requirements: []
|
103
|
-
|
104
80
|
rubyforge_project:
|
105
|
-
rubygems_version: 1.
|
81
|
+
rubygems_version: 1.8.10
|
106
82
|
signing_key:
|
107
83
|
specification_version: 3
|
108
84
|
summary: Simple plugin for logging events in Rails applications.
|
109
|
-
test_files:
|
110
|
-
- spec/event_horizon_spec.rb
|
111
|
-
- spec/spec_helper.rb
|
85
|
+
test_files: []
|