newrelic_moped 0.0.12 → 0.0.13
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 +4 -4
- data/README.md +12 -1
- data/lib/newrelic_moped/version.rb +1 -1
- metadata +31 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: eb73b301f3bc76ecc62e2838269c4371a46e6f77
|
|
4
|
+
data.tar.gz: 594fe06192bca5a3ddbdbcb02155205c0bbe5abb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d9d5f067f1968736e2d2944309aae35c4241aaf3ced7fe1c0acb4e7ecb15019c61327696340451ff5ee3b7a5f6b4a54c97aaf3e40c7bf0e4fe027013fbd553a1
|
|
7
|
+
data.tar.gz: 430cf1814a66f060cf28fd68cd5e9869f9ef17b1e4bf920b01ee85bb719fafa7b90dbeb13dbaa445a0672a5233231fe796bae979ff7d35f74a0ada00e6f97a3a
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# New Relic Moped
|
|
1
|
+
# New Relic Moped [](https://travis-ci.org/stevebartholomew/newrelic_moped)
|
|
2
2
|
|
|
3
3
|
New Relic instrumentation for Moped (1.x, 2.0) / Mongoid (3.x, 4.0)
|
|
4
4
|
|
|
@@ -16,6 +16,17 @@ Or install it yourself as:
|
|
|
16
16
|
|
|
17
17
|
$ gem install newrelic_moped
|
|
18
18
|
|
|
19
|
+
### Sinatra, Resque, Sidekiq
|
|
20
|
+
|
|
21
|
+
When you don't use in Sinatra config.ru
|
|
22
|
+
|
|
23
|
+
run Rack::URLMap.new '/' => Sinatra::Application
|
|
24
|
+
|
|
25
|
+
or you would like to instrument *Moped* usage in non-Rack configurations like *Resque*, *Sidekiq* or even in *irb*, you have to be sure that *newrelic_moped* is required **before** *newrelic_rpm*
|
|
26
|
+
|
|
27
|
+
require 'newrelic_moped'
|
|
28
|
+
require 'newrelic_rpm'
|
|
29
|
+
|
|
19
30
|
### Configuration
|
|
20
31
|
|
|
21
32
|
This gem does not require any specific configuration. Please follow general newrelic_rpm gem configuration:
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: newrelic_moped
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Bartholomew
|
|
@@ -9,28 +9,28 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2015-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: newrelic_rpm
|
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
|
17
17
|
requirements:
|
|
18
|
-
- - "~>"
|
|
19
|
-
- !ruby/object:Gem::Version
|
|
20
|
-
version: '3.0'
|
|
21
18
|
- - ">="
|
|
22
19
|
- !ruby/object:Gem::Version
|
|
23
20
|
version: '3.7'
|
|
21
|
+
- - "<"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: '3.11'
|
|
24
24
|
type: :runtime
|
|
25
25
|
prerelease: false
|
|
26
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
27
27
|
requirements:
|
|
28
|
-
- - "~>"
|
|
29
|
-
- !ruby/object:Gem::Version
|
|
30
|
-
version: '3.0'
|
|
31
28
|
- - ">="
|
|
32
29
|
- !ruby/object:Gem::Version
|
|
33
30
|
version: '3.7'
|
|
31
|
+
- - "<"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '3.11'
|
|
34
34
|
- !ruby/object:Gem::Dependency
|
|
35
35
|
name: moped
|
|
36
36
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -59,6 +59,20 @@ dependencies:
|
|
|
59
59
|
- - ">="
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
|
+
- !ruby/object:Gem::Dependency
|
|
63
|
+
name: test-unit
|
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
type: :development
|
|
70
|
+
prerelease: false
|
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
62
76
|
description: New Relic Instrumentation for Moped & Mongoid 3
|
|
63
77
|
email:
|
|
64
78
|
- stephenbartholomew@gmail.com
|
|
@@ -76,7 +90,14 @@ homepage: https://github.com/stevebartholomew/newrelic_moped
|
|
|
76
90
|
licenses:
|
|
77
91
|
- MIT
|
|
78
92
|
metadata: {}
|
|
79
|
-
post_install_message:
|
|
93
|
+
post_install_message: |
|
|
94
|
+
----------------
|
|
95
|
+
IMPORTANT!
|
|
96
|
+
|
|
97
|
+
This is the last version of newrelic_moped
|
|
98
|
+
supporting newrelic_rpm version < 3.11 !
|
|
99
|
+
|
|
100
|
+
----------------
|
|
80
101
|
rdoc_options: []
|
|
81
102
|
require_paths:
|
|
82
103
|
- lib
|
|
@@ -92,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
92
113
|
version: '0'
|
|
93
114
|
requirements: []
|
|
94
115
|
rubyforge_project:
|
|
95
|
-
rubygems_version: 2.
|
|
116
|
+
rubygems_version: 2.4.5
|
|
96
117
|
signing_key:
|
|
97
118
|
specification_version: 4
|
|
98
119
|
summary: New Relic Instrumentation for Moped & Mongoid 3
|