README.md in acfs-0.42.0 vs README.md in acfs-0.43.0

- old
+ new

@@ -1,13 +1,13 @@ # Acfs - *API client for services* -[![Gem Version](https://badge.fury.io/rb/acfs.png)](http://badge.fury.io/rb/acfs) -[![Build Status](https://travis-ci.org/jgraichen/acfs.png?branch=stable-0)](https://travis-ci.org/jgraichen/acfs) -[![Coverage Status](https://coveralls.io/repos/jgraichen/acfs/badge.png?branch=stable-0)](https://coveralls.io/r/jgraichen/acfs) -[![Code Climate](https://codeclimate.com/github/jgraichen/acfs.png)](https://codeclimate.com/github/jgraichen/acfs) -[![Dependency Status](https://gemnasium.com/jgraichen/acfs.png)](https://gemnasium.com/jgraichen/acfs) -[![RubyDoc Documentation](http://b.repl.ca/v1/rubydoc-here-blue.png)](http://rubydoc.info/github/jgraichen/acfs/master/frames) +[![Gem Version](https://badge.fury.io/rb/acfs.svg)](http://badge.fury.io/rb/acfs) +[![Build Status](http://img.shields.io/travis/jgraichen/acfs/master.svg)](https://travis-ci.org/jgraichen/acfs) +[![Coverage Status](http://img.shields.io/coveralls/jgraichen/acfs/master.svg)](https://coveralls.io/r/jgraichen/acfs) +[![Code Climate](http://img.shields.io/codeclimate/github/jgraichen/acfs.svg)](https://codeclimate.com/github/jgraichen/acfs) +[![Dependency Status](http://img.shields.io/gemnasium/jgraichen/acfs.svg)](https://gemnasium.com/jgraichen/acfs) +[![RubyDoc Documentation](http://img.shields.io/badge/rubydoc-here-blue.svg)](http://rubydoc.info/github/jgraichen/acfs/master/frames) Acfs is a library to develop API client libraries for single services within a larger service oriented application. Acfs covers model and service abstraction, convenient query and filter methods, full middleware stack for pre-processing requests and responses on a per service level and automatic request queuing and parallel processing. See Usage for more. @@ -248,12 +248,12 @@ expect(user.id).to be == 1 expect(user.name).to be == 'John Smith' expect(user.age).to be == 32 - expect(@stub).to has_called - expect(@stub).to_not have_called 5.times + expect(@stub).to be_called + expect(@stub).to_not be_called 5.times end it 'should not find user number two' do MyUser.find 3 @@ -286,10 +286,9 @@ Acfs supports [instrumentation via active support][1]. Acfs expose to following events -* `acfs.operation.before_process(operation)`: Acfs operation about to process * `acfs.operation.complete(operation, response)`: Acfs operation completed * `acfs.runner.sync_run(operation)`: Run operation right now skipping queue. * `acfs.runner.enqueue(operation)`: Enqueue operation to be run later. * `acfs.before_run`: directly before `acfs.run` * `acfs.run`: Run all queued operations.