bunyan 0.5.0 → 0.5.1
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +0 -16
- data/bunyan.gemspec +11 -38
- data/spec/spec.opts +11 -5
- metadata +22 -47
- data/VERSION +0 -1
data/Rakefile
CHANGED
@@ -1,19 +1,3 @@
|
|
1
|
-
begin
|
2
|
-
require 'jeweler'
|
3
|
-
Jeweler::Tasks.new do |gemspec|
|
4
|
-
gemspec.name = "bunyan"
|
5
|
-
gemspec.summary = "A MongoDB-based logging solution."
|
6
|
-
gemspec.description = "Bunyan is a thin ruby wrapper around a MongoDB capped collection, created with high-performance, flexible logging in mind."
|
7
|
-
gemspec.email = "ajsharp@gmail.com"
|
8
|
-
gemspec.homepage = "http://github.com/ajsharp/bunyan"
|
9
|
-
gemspec.authors = ["Alex Sharp"]
|
10
|
-
gemspec.add_dependency 'mongo', '~> 1.2.4'
|
11
|
-
end
|
12
|
-
Jeweler::GemcutterTasks.new
|
13
|
-
rescue LoadError
|
14
|
-
puts "Jeweler not available. Install it with: gem install jeweler"
|
15
|
-
end
|
16
|
-
|
17
1
|
begin
|
18
2
|
require 'spec/rake/spectask'
|
19
3
|
|
data/bunyan.gemspec
CHANGED
@@ -1,11 +1,8 @@
|
|
1
|
-
# Generated by jeweler
|
2
|
-
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
4
1
|
# -*- encoding: utf-8 -*-
|
5
2
|
|
6
3
|
Gem::Specification.new do |s|
|
7
4
|
s.name = %q{bunyan}
|
8
|
-
s.version = "0.5.
|
5
|
+
s.version = "0.5.1"
|
9
6
|
|
10
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
8
|
s.authors = ["Alex Sharp"]
|
@@ -13,55 +10,31 @@ Gem::Specification.new do |s|
|
|
13
10
|
s.description = %q{Bunyan is a thin ruby wrapper around a MongoDB capped collection, created with high-performance, flexible logging in mind.}
|
14
11
|
s.email = %q{ajsharp@gmail.com}
|
15
12
|
s.extra_rdoc_files = [
|
16
|
-
"README.md"
|
17
|
-
]
|
18
|
-
s.files = [
|
19
|
-
"CHANGELOG.md",
|
20
|
-
"Gemfile",
|
21
|
-
"MIT-LICENSE",
|
22
13
|
"README.md",
|
23
|
-
"
|
24
|
-
"VERSION",
|
14
|
+
"CHANGELOG.md",
|
25
15
|
"bunyan.gemspec",
|
26
|
-
"
|
27
|
-
"
|
28
|
-
"
|
29
|
-
"lib/bunyan/config.rb",
|
30
|
-
"lib/bunyan/configurable_methods.rb",
|
31
|
-
"spec/bunyan_spec.rb",
|
32
|
-
"spec/config_spec.rb",
|
33
|
-
"spec/integration_spec.rb",
|
34
|
-
"spec/spec.opts",
|
35
|
-
"spec/spec_helper.rb"
|
16
|
+
"Rakefile",
|
17
|
+
"MIT-LICENSE",
|
18
|
+
"Gemfile"
|
36
19
|
]
|
37
|
-
s.
|
20
|
+
s.extra_rdoc_files += Dir['examples/*']
|
21
|
+
|
22
|
+
s.files = Dir['lib/**/*']
|
23
|
+
s.test_files = Dir['spec/*']
|
38
24
|
s.require_paths = ["lib"]
|
39
|
-
|
25
|
+
|
26
|
+
s.homepage = %q{http://github.com/ajsharp/bunyan}
|
40
27
|
s.summary = %q{A MongoDB-based logging solution.}
|
41
|
-
s.test_files = [
|
42
|
-
"examples/middleware.rb",
|
43
|
-
"examples/rails.rb",
|
44
|
-
"spec/bunyan_spec.rb",
|
45
|
-
"spec/config_spec.rb",
|
46
|
-
"spec/integration_spec.rb",
|
47
|
-
"spec/spec_helper.rb"
|
48
|
-
]
|
49
28
|
|
50
29
|
if s.respond_to? :specification_version then
|
51
30
|
s.specification_version = 3
|
52
31
|
|
53
32
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
54
|
-
s.add_runtime_dependency(%q<bson_ext>, [">= 1.2.4"])
|
55
|
-
s.add_runtime_dependency(%q<bunyan>, [">= 0"])
|
56
33
|
s.add_runtime_dependency(%q<mongo>, ["~> 1.2.4"])
|
57
34
|
else
|
58
|
-
s.add_dependency(%q<bson_ext>, [">= 1.2.4"])
|
59
|
-
s.add_dependency(%q<bunyan>, [">= 0"])
|
60
35
|
s.add_dependency(%q<mongo>, ["~> 1.2.4"])
|
61
36
|
end
|
62
37
|
else
|
63
|
-
s.add_dependency(%q<bson_ext>, [">= 1.2.4"])
|
64
|
-
s.add_dependency(%q<bunyan>, [">= 0"])
|
65
38
|
s.add_dependency(%q<mongo>, ["~> 1.2.4"])
|
66
39
|
end
|
67
40
|
end
|
data/spec/spec.opts
CHANGED
@@ -1,5 +1,11 @@
|
|
1
|
-
--
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
1
|
+
diff --git a/spec/spec.opts b/spec/spec.opts
|
2
|
+
deleted file mode 100644
|
3
|
+
index 53dd980..0000000
|
4
|
+
--- a/spec/spec.opts
|
5
|
+
+++ /dev/null
|
6
|
+
@@ -1,5 +0,0 @@
|
7
|
+
---colour
|
8
|
+
---format
|
9
|
+
-s
|
10
|
+
---loadby mtime
|
11
|
+
---reverse
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bunyan
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
5
|
-
prerelease:
|
4
|
+
hash: 9
|
5
|
+
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 5
|
9
|
-
-
|
10
|
-
version: 0.5.
|
9
|
+
- 1
|
10
|
+
version: 0.5.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alex Sharp
|
@@ -19,39 +19,9 @@ date: 2011-03-31 00:00:00 -07:00
|
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
22
|
+
name: mongo
|
22
23
|
prerelease: false
|
23
|
-
type: :runtime
|
24
24
|
requirement: &id001 !ruby/object:Gem::Requirement
|
25
|
-
none: false
|
26
|
-
requirements:
|
27
|
-
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
hash: 23
|
30
|
-
segments:
|
31
|
-
- 1
|
32
|
-
- 2
|
33
|
-
- 4
|
34
|
-
version: 1.2.4
|
35
|
-
name: bson_ext
|
36
|
-
version_requirements: *id001
|
37
|
-
- !ruby/object:Gem::Dependency
|
38
|
-
prerelease: false
|
39
|
-
type: :runtime
|
40
|
-
requirement: &id002 !ruby/object:Gem::Requirement
|
41
|
-
none: false
|
42
|
-
requirements:
|
43
|
-
- - ">="
|
44
|
-
- !ruby/object:Gem::Version
|
45
|
-
hash: 3
|
46
|
-
segments:
|
47
|
-
- 0
|
48
|
-
version: "0"
|
49
|
-
name: bunyan
|
50
|
-
version_requirements: *id002
|
51
|
-
- !ruby/object:Gem::Dependency
|
52
|
-
prerelease: false
|
53
|
-
type: :runtime
|
54
|
-
requirement: &id003 !ruby/object:Gem::Requirement
|
55
25
|
none: false
|
56
26
|
requirements:
|
57
27
|
- - ~>
|
@@ -62,8 +32,8 @@ dependencies:
|
|
62
32
|
- 2
|
63
33
|
- 4
|
64
34
|
version: 1.2.4
|
65
|
-
|
66
|
-
version_requirements: *
|
35
|
+
type: :runtime
|
36
|
+
version_requirements: *id001
|
67
37
|
description: Bunyan is a thin ruby wrapper around a MongoDB capped collection, created with high-performance, flexible logging in mind.
|
68
38
|
email: ajsharp@gmail.com
|
69
39
|
executables: []
|
@@ -72,19 +42,25 @@ extensions: []
|
|
72
42
|
|
73
43
|
extra_rdoc_files:
|
74
44
|
- README.md
|
75
|
-
files:
|
76
45
|
- CHANGELOG.md
|
77
|
-
- Gemfile
|
78
|
-
- MIT-LICENSE
|
79
|
-
- README.md
|
80
|
-
- Rakefile
|
81
|
-
- VERSION
|
82
46
|
- bunyan.gemspec
|
47
|
+
- Rakefile
|
48
|
+
- MIT-LICENSE
|
49
|
+
- Gemfile
|
83
50
|
- examples/middleware.rb
|
84
51
|
- examples/rails.rb
|
85
|
-
|
52
|
+
files:
|
86
53
|
- lib/bunyan/config.rb
|
87
54
|
- lib/bunyan/configurable_methods.rb
|
55
|
+
- lib/bunyan.rb
|
56
|
+
- README.md
|
57
|
+
- CHANGELOG.md
|
58
|
+
- bunyan.gemspec
|
59
|
+
- Rakefile
|
60
|
+
- MIT-LICENSE
|
61
|
+
- Gemfile
|
62
|
+
- examples/middleware.rb
|
63
|
+
- examples/rails.rb
|
88
64
|
- spec/bunyan_spec.rb
|
89
65
|
- spec/config_spec.rb
|
90
66
|
- spec/integration_spec.rb
|
@@ -120,14 +96,13 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
96
|
requirements: []
|
121
97
|
|
122
98
|
rubyforge_project:
|
123
|
-
rubygems_version: 1.
|
99
|
+
rubygems_version: 1.3.7
|
124
100
|
signing_key:
|
125
101
|
specification_version: 3
|
126
102
|
summary: A MongoDB-based logging solution.
|
127
103
|
test_files:
|
128
|
-
- examples/middleware.rb
|
129
|
-
- examples/rails.rb
|
130
104
|
- spec/bunyan_spec.rb
|
131
105
|
- spec/config_spec.rb
|
132
106
|
- spec/integration_spec.rb
|
107
|
+
- spec/spec.opts
|
133
108
|
- spec/spec_helper.rb
|
data/VERSION
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
0.5.0
|