README.md in rspec-become-matcher-0.1.1 vs README.md in rspec-become-matcher-0.1.2

- old
+ new

@@ -1,15 +1,14 @@ -# Rspec::BecomeMatcher [![Build Status](https://travis-ci.org/fujimura/rspec-become-matcher.svg?branch=master)](https://travis-ci.org/fujimura/rspec-become-matcher) +# Rspec::BecomeMatcher [![Build Status](https://github.com/fujimura/rspec-become-matcher/actions/workflows/ci.yml/badge.svg)](https://github.com/fujimura/rspec-become-matcher/actions/workflows/ci.yml) RSpec matcher to check that an expression changed its result within arbitrary seconds. ```ruby async_task.start! expect { async_task.finished? }.to become(true) ``` - ## Installation Add this line to your application's Gemfile: ```ruby @@ -25,9 +24,10 @@ $ gem install rspec-become-matcher ## Usage Require and include matcher first: + ```ruby require 'rspec/become_matcher' RSpec.configure do |config| config.include RSpec::BecomeMatcher