Skip to content

Commit

Permalink
Minor wording updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelser committed Sep 10, 2016
1 parent 2723218 commit e3bc66a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.5.4

- Some minor wording updates.

## 1.5.3

- Remove now-pointless re-raise.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 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)

Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests.
Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests.

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.

Expand Down
2 changes: 1 addition & 1 deletion caddy.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.email = ["[email protected]"]
s.summary = %q(Caddy gives you a auto-updating global cache to speed up requests.)
s.description = <<-EOF
Caddy is an asynchronously updated store that is updated on an interval to store objects that you can access quickly during requests.
Caddy is an asynchronously refreshed cache that is updated on an interval to store objects that you can access quickly during requests.
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.
EOF
Expand Down
2 changes: 1 addition & 1 deletion lib/caddy/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module Caddy
VERSION = "1.5.3".freeze
VERSION = "1.5.4".freeze
end

0 comments on commit e3bc66a

Please sign in to comment.