faraday-honeycomb 0.3.0 → 0.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7ecbf9b6597a7e51ca8b037cfeee45ba7398f4f02d15f543d112e08d7e5e9af9
4
- data.tar.gz: de07c482c1aceb902e31ec630e3f8c6151d5f1b823bb02814a6fcc714f248ec1
3
+ metadata.gz: 3f5f4e6835284d3e0dcb3c6a0bf6ed865d7b8ede86effb953be5d81f222f767f
4
+ data.tar.gz: a1ee3f1c33b1dda61e728004fe9d0c5a28af38ee82e8b54745dac8c7daeda2d0
5
5
  SHA512:
6
- metadata.gz: afb49bdba467c9c31b2178851211f8bdf85f9adf6124b3af748bf09e98fa78c38a4c4e34efc96a8a5603c098868268dd0f411dd15df4d18ab2fa0a5cae3fbb9e
7
- data.tar.gz: 67fb61b91eccfa01191ffbc74a463c1c3bd6d65e822e939d38562907c231783319bfa4b85cf70e1f5a0e8a4f80e93f6fad28d3e3db7501274e1f6f4ac25b78e7
6
+ metadata.gz: 9c516370d6ca1313616cec77a3702793bab508e2695e4af49de936f700fbd684de093ea95150a9c075a51272c13ad51a4ac767e3b20369635ebe4e8a828cf787
7
+ data.tar.gz: 4d9d7e340b23112ba86e9c1dc1642073aa17cb0f17e8c7616761ef96ead942b763cc5d6bec9aac11fca256976d941dccac69cc760492eb87ad2399ffe4950a6c
@@ -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.
@@ -30,6 +30,7 @@ module Faraday
30
30
  proc do |b|
31
31
  logger.debug "Adding Faraday::Honeycomb::Middleware in #{self}.new" if logger
32
32
  b.use :honeycomb, client: honeycomb_client, logger: logger
33
+ b.request :url_encoded
33
34
  b.adapter Faraday.default_adapter
34
35
  end
35
36
  end
@@ -1,7 +1,7 @@
1
1
  module Faraday
2
2
  module Honeycomb
3
3
  GEM_NAME = 'faraday-honeycomb'
4
- VERSION = '0.3.0'
4
+ VERSION = '0.3.1'
5
5
 
6
6
  MIN_FARADAY_VERSION = '0.8'
7
7
  end
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.0
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: 2018-11-27 00:00:00.000000000 Z
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