README.md in rspec-time_stop-0.1.0 vs README.md in rspec-time_stop-0.1.1
- old
+ new
@@ -1,11 +1,12 @@
-# Rspec::TimeStop
+# RSpec::TimeStop
Stop current time in example.
This is a shorthand of `ActiveSupport::Testing::TimeHelpers`
-[![Build Status](https://travis-ci.org/sue445/rspec-time_stop.svg?branch=master)](https://travis-ci.org/sue445/rspec-time_stop)
+[![Gem Version](https://badge.fury.io/rb/rspec-time_stop.svg)](https://badge.fury.io/rb/rspec-time_stop)
+[![Build Status](https://github.com/sue445/rspec-time_stop/workflows/test/badge.svg?branch=master)](https://github.com/sue445/rspec-time_stop/actions?query=workflow%3Atest)
[![Coverage Status](https://coveralls.io/repos/github/sue445/rspec-time_stop/badge.svg)](https://coveralls.io/github/sue445/rspec-time_stop)
[![Maintainability](https://api.codeclimate.com/v1/badges/9f437c78e286285f5605/maintainability)](https://codeclimate.com/github/sue445/rspec-time_stop/maintainability)
## Installation
@@ -27,10 +28,10 @@
Add `:time_stop` to `it`, `describe` or `context`
## Example
```ruby
-RSpec.describe Rspec::TimeStop do
+RSpec.describe RSpec::TimeStop do
context "with :time_stop", :time_stop do
it "current time is freezed" do
before_time = Time.now
sleep 1
after_time = Time.now