newrelic-grape 1.3.0 → 1.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/README.md +11 -0
- data/lib/newrelic-grape/instrument.rb +0 -1
- data/lib/newrelic-grape/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3172a804df57e407393d92969bec41ce62a5bc3f
|
4
|
+
data.tar.gz: 9f371aa6aef084cafa4f21c6f1eb9b154d199d8e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d03b55e6f73e2baa79e623619db643127333e82c43d6d5d7d6e0fb61cb262f3f39c386d8be57d6dbcbaf17ba651ac1615416b3fa2e607aa023381afc4d407a0
|
7
|
+
data.tar.gz: 0bda6142e4db3e7d3e613e89c37c98c60cf6a172761175ec4193b27979103596e94939cfa40810df70bc1287ef320cab2b5410adf2fce8800dc2c0f760cc56f9
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Next Release
|
2
2
|
|
3
|
+
## 1.3.1 (06/08/2013)
|
4
|
+
|
5
|
+
* Remove explicit newrelic_rpm require [@rymai](https://github.com/rymai)
|
6
|
+
* Add information to README [@agileanimal](https://github.com/agileanimal)
|
7
|
+
|
3
8
|
## 1.3.0 (05/10/2013)
|
4
9
|
|
5
10
|
* Support NewRelic request params [@vindia](https://github.com/vindia)
|
data/README.md
CHANGED
@@ -15,6 +15,17 @@ And then execute:
|
|
15
15
|
Or install it yourself as:
|
16
16
|
|
17
17
|
$ gem install newrelic-grape
|
18
|
+
|
19
|
+
If you're using Rails, make sure that you've told rack to start the agent for Grape:
|
20
|
+
|
21
|
+
# config.ru
|
22
|
+
require ::File.expand_path('../config/environment', __FILE__)
|
23
|
+
|
24
|
+
# You need to manually start the agent
|
25
|
+
NewRelic::Agent.manual_start
|
26
|
+
|
27
|
+
run YourApplication::Application
|
28
|
+
|
18
29
|
|
19
30
|
## Usage
|
20
31
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: newrelic-grape
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Richard Huang
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2013-
|
11
|
+
date: 2013-06-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: grape
|