faraday-honeycomb 0.3.0 → 0.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -0
- data/lib/faraday-honeycomb/auto_install.rb +1 -0
- data/lib/faraday/honeycomb/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f5f4e6835284d3e0dcb3c6a0bf6ed865d7b8ede86effb953be5d81f222f767f
|
4
|
+
data.tar.gz: a1ee3f1c33b1dda61e728004fe9d0c5a28af38ee82e8b54745dac8c7daeda2d0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c516370d6ca1313616cec77a3702793bab508e2695e4af49de936f700fbd684de093ea95150a9c075a51272c13ad51a4ac767e3b20369635ebe4e8a828cf787
|
7
|
+
data.tar.gz: 4d9d7e340b23112ba86e9c1dc1642073aa17cb0f17e8c7616761ef96ead942b763cc5d6bec9aac11fca256976d941dccac69cc760492eb87ad2399ffe4950a6c
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# Honeycomb Tracing for Faraday
|
2
|
+
|
3
|
+
[![Build Status](https://travis-ci.org/honeycombio/faraday-honeycomb.svg?branch=master)](https://travis-ci.org/honeycombio/faraday-honeycomb)
|
4
|
+
[![Gem Version](https://badge.fury.io/rb/faraday-honeycomb.svg)](https://badge.fury.io/rb/faraday-honeycomb)
|
5
|
+
|
6
|
+
This package makes it easy to instrument your Faraday requests in your ruby application to send useful events to [Honeycomb](https://www.honeycomb.io), a service for debugging your software in production.
|
7
|
+
- [Usage and Examples](https://docs.honeycomb.io/getting-data-in/beelines/ruby-beeline/)
|
8
|
+
|
9
|
+
Sign up for a [Honeycomb
|
10
|
+
trial](https://ui.honeycomb.io/signup) to obtain an API key before starting.
|
11
|
+
|
12
|
+
## Compatible with
|
13
|
+
|
14
|
+
Requires Ruby version 2.2 or later
|
15
|
+
|
16
|
+
Faraday 0.8 or later
|
17
|
+
|
18
|
+
## Get in touch
|
19
|
+
|
20
|
+
Please reach out to [support@honeycomb.io](mailto:support@honeycomb.io) or ping
|
21
|
+
us with the chat bubble on [our website](https://www.honeycomb.io) for any
|
22
|
+
assistance. We also welcome [bug reports](https://github.com/honeycombio/faraday-honeycomb/issues).
|
23
|
+
|
24
|
+
## Contributions
|
25
|
+
|
26
|
+
Features, bug fixes and other changes to `faraday-honeycomb` are gladly accepted. Please
|
27
|
+
open issues or a pull request with your change. Remember to add your name to the
|
28
|
+
CONTRIBUTORS file!
|
29
|
+
|
30
|
+
All contributions will be released under the Apache License 2.0.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: faraday-honeycomb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sam Stokes
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2019-01-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: libhoney
|
@@ -101,6 +101,7 @@ executables: []
|
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
+
- README.md
|
104
105
|
- lib/faraday-honeycomb.rb
|
105
106
|
- lib/faraday-honeycomb/auto_install.rb
|
106
107
|
- lib/faraday/honeycomb.rb
|