README.md in exists-1.0.0 vs README.md in exists-1.0.1
- old
+ new
@@ -1,21 +1,19 @@
-# exists [![[version]](https://badge.fury.io/rb/exists.svg)](http://badge.fury.io/rb/exists) [![[travis]](https://travis-ci.org/janlelis/exists.png)](https://travis-ci.org/janlelis/exists)
+# exists [![[version]](https://badge.fury.io/rb/exists.svg)](https://badge.fury.io/rb/exists) [![[ci]](https://github.com/janlelis/exists/workflows/Test/badge.svg)](https://github.com/janlelis/exists/actions?query=workflow%3ATest)
Like ActiveSupport's presence, but for [Object#null?](https://github.com/janlelis/null_question)
For example, this is useful when setting defaults via or: `object.exists || other_object`
-
## Setup
Add to your **Gemfile**:
```ruby
gem 'exists'
```
-
## Usage
```ruby
class NullObject
def null?
@@ -26,9 +24,8 @@
nil.exists #=> nil
NullObject.new.exists #=> nil
"some object".exists #=> "some object"
```
-
## MIT License
-Copyright (C) 2015 Jan Lelis <http://janlelis.com>. Released under the MIT license.
+Copyright (C) 2015 Jan Lelis <https://janlelis.com>. Released under the MIT license.