README.md in faraday-zipkin-0.3.0 vs README.md in faraday-zipkin-0.3.1

- old
+ new

@@ -1,8 +1,8 @@ # Faraday::Zipkin -[![Build Status](https://travis-ci.org/Oscil8/faraday-zipkin.svg?branch=master)](https://travis-ci.org/Oscil8/faraday-zipkin) +[![Build Status](https://travis-ci.org/openzipkin/faraday-zipkin.svg?branch=master)](https://travis-ci.org/openzipkin/faraday-zipkin) Faraday middleware to generate Zipkin tracing headers. For more information about Zipkin, go to http://twitter.github.io/zipkin @@ -22,11 +22,11 @@ Include Faraday::Zipkin::TraceHeaders as a Faraday middleware: require 'faraday' require 'faraday-zipkin' - + conn = Faraday.new(:url => 'http://localhost:9292/') do |faraday| # 'service_name' is optional (but recommended) faraday.use Faraday::Zipkin::TraceHeaders, 'service_name' # default Faraday stack faraday.request :url_encoded @@ -38,10 +38,10 @@ first section of the destination URL (e.g. 'service.example.com' => 'service'). ## Contributing -1. Fork it ( https://github.com/Oscil8/faraday-zipkin/fork ) +1. Fork it ( https://github.com/openzipkin/faraday-zipkin/fork ) 2. Create your feature branch (`git checkout -b my-new-feature`) 3. Commit your changes (`git commit -am 'Add some feature'`) 4. Push to the branch (`git push origin my-new-feature`) 5. Create a new Pull Request