README.md in fitting-0.4.1 vs README.md in fitting-0.4.2

- old
+ new

@@ -1,7 +1,9 @@ # Fitting +[![Build Status](https://travis-ci.org/funbox/fitting.svg?branch=master)](https://travis-ci.org/funbox/fitting) + This gem will help to make your tests according to the documentation for the API. When writing tests, you can be sure that the implement API in accordance with documentation on API Blueprint. ## Installation @@ -27,11 +29,11 @@ rails_helper.rb ```ruby require 'fitting' config.after(:each, :type => :controller) do - Fitting::Documentation.try_on(request, response) + Fitting::Documentation.try_on(self, request, response) end ``` ### Formatting @@ -43,19 +45,19 @@ ``` bundle exec rspec --format Fitting::Formatter::Response::MicroYaml ``` -After that you can find the report in `rreport_response_macro.yaml` or `report_response_micro.yaml`. +After that you can find the report in `report_response_macro.yaml` or `report_response_micro.yaml`. ## Config ### tomogram This gem takes a simplified format json convert from API Blueprint which we have called API Tomogram. -Use gem tomograph. +Use gem [tomograph](https://github.com/funbox/tomograph) ```ruby Fitting.configure do |config| config.tomogram = 'tomogram.json' end @@ -74,10 +76,10 @@ Default true. ## Contributing -Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/fitting. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. +Bug reports and pull requests are welcome on GitHub at https://github.com/funbox/fitting. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct. ## License The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).