caddy 1.5.3 → 1.5.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b2fc400493e3343191071a5abdc08a9278fabe46
4
- data.tar.gz: c0c50fc578f8a03360b397619bea6aa7dde2564c
3
+ metadata.gz: 2c6eada3f463107c0237acb6a9df95d25c923658
4
+ data.tar.gz: d0a85901f32e68fa48e91792896ac0faaea5747e
5
5
  SHA512:
6
- metadata.gz: 510efa365584ce389f98b7e25ba3e52268306aa14f732c1608f8a268bbac9d85f255e2158c90edb91375e51745d202ac24602c66a6c9ca33cf69f5b8dd30de88
7
- data.tar.gz: afda6c4403d165d1e3264e456d77d7cb78b978d1a06559bc21ce2a4291656f86f05f0274f6401ba7ed9c93617e8acc09deae492bc77e6b6c6465e4e4276315e3
6
+ metadata.gz: 42f536651f9799b6edacb11176f1644e1ec9e58911e739ed908922e062d91fafa887c6a48fd5d7fed7dc1a6717f29c94af4d91dc88ba02cc033847e9090b39d1
7
+ data.tar.gz: 4c10ee82e94ee1d0f5d0002b86d5e567433d1eb9afbfd220818cde2bbacc442629673b2c192d1112d1cf36a0577acc41ca1f8a655c6301375de624ad3be38434
@@ -1,3 +1,7 @@
1
+ ## 1.5.4
2
+
3
+ - Some minor wording updates.
4
+
1
5
  ## 1.5.3
2
6
 
3
7
  - Remove now-pointless re-raise.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Caddy [![Build Status](https://travis-ci.org/nickelser/caddy.svg?branch=master)](https://travis-ci.org/nickelser/caddy) [![Code Climate](https://codeclimate.com/github/nickelser/caddy/badges/gpa.svg)](https://codeclimate.com/github/nickelser/caddy) [![Test Coverage](https://codeclimate.com/github/nickelser/caddy/badges/coverage.svg)](https://codeclimate.com/github/nickelser/caddy) [![Gem Version](https://badge.fury.io/rb/caddy.svg)](http://badge.fury.io/rb/caddy)
2
2
 
3
- Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests.
3
+ Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests.
4
4
 
5
5
  Caddy is great for storing information like feature flags -- accessed extremely frequently during many requests, updated relatively rarely and usually safe to be stale by some small duration.
6
6
 
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.email = ["nick.elser@gmail.com"]
11
11
  s.summary = %q(Caddy gives you a auto-updating global cache to speed up requests.)
12
12
  s.description = <<-EOF
13
- Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests.
13
+ Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests.
14
14
 
15
15
  Caddy is great for storing information like feature flags -- accessed extremely frequently during many requests, updated relatively rarely and usually safe to be stale by some small duration.
16
16
  EOF
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Caddy
3
- VERSION = "1.5.3".freeze
3
+ VERSION = "1.5.4".freeze
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: caddy
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
4
+ version: 1.5.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Elser
@@ -67,7 +67,7 @@ dependencies:
67
67
  - !ruby/object:Gem::Version
68
68
  version: 0.4.7
69
69
  description: |2
70
- Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests.
70
+ Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests.
71
71
 
72
72
  Caddy is great for storing information like feature flags -- accessed extremely frequently during many requests, updated relatively rarely and usually safe to be stale by some small duration.
73
73
  email: