mongo_on_rails 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/Gemfile +1 -0
- data/README.md +0 -2
- data/lib/mongo_on_rails/version.rb +1 -1
- data/mongo_on_rails.gemspec +1 -1
- metadata +10 -5
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -8,8 +8,6 @@ A Rails Railtie that use the Mongo Instrumenter API to log the Mongo runtime int
|
|
8
8
|
|
9
9
|
Add this line to your application's Gemfile:
|
10
10
|
|
11
|
-
# currently we need a specific version of the mongo driver, until 1.7.2 is released
|
12
|
-
gem 'mongo', :git => "git://github.com/mongodb/mongo-ruby-driver.git", :commit => "7eac82b"
|
13
11
|
gem 'mongo_on_rails'
|
14
12
|
|
15
13
|
And then execute:
|
data/mongo_on_rails.gemspec
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mongo_on_rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-11-
|
12
|
+
date: 2012-11-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: mongo
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '1.
|
21
|
+
version: '1.8'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ~>
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '1.
|
29
|
+
version: '1.8'
|
30
30
|
description: Mongo Railtie Logging Adapter
|
31
31
|
email:
|
32
32
|
- timo@schilling.io
|
@@ -59,12 +59,18 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
59
|
- - ! '>='
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '0'
|
62
|
+
segments:
|
63
|
+
- 0
|
64
|
+
hash: -529301676308076266
|
62
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
63
66
|
none: false
|
64
67
|
requirements:
|
65
68
|
- - ! '>='
|
66
69
|
- !ruby/object:Gem::Version
|
67
70
|
version: '0'
|
71
|
+
segments:
|
72
|
+
- 0
|
73
|
+
hash: -529301676308076266
|
68
74
|
requirements: []
|
69
75
|
rubyforge_project:
|
70
76
|
rubygems_version: 1.8.24
|
@@ -74,4 +80,3 @@ summary: ! 'A Rails Railtie that use the Mongo Instrumenter API to log the Mongo
|
|
74
80
|
into the Rails Controller Runtime Logger like `Completed 200 OK in 31ms (Views:
|
75
81
|
23.1ms | Mongo: 3.2ms)`.'
|
76
82
|
test_files: []
|
77
|
-
has_rdoc:
|