cache_rules 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/cache_rules.gemspec +3 -3
- metadata +4 -3
data/cache_rules.gemspec
CHANGED
|
@@ -6,12 +6,12 @@ require 'date'
|
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = 'cache_rules'
|
|
9
|
-
s.version = '0.1.
|
|
9
|
+
s.version = '0.1.2'
|
|
10
10
|
|
|
11
11
|
s.date = Date.today.to_s
|
|
12
12
|
|
|
13
13
|
s.summary = "CacheRules validates requests and responses for cached HTTP data based on RFCs 7230-7235"
|
|
14
|
-
s.description = "#{s.summary}. The goal is to
|
|
14
|
+
s.description = "#{s.summary}. The goal is to facilitate implementation of well-behaved caching solutions which adhere to RFC standards."
|
|
15
15
|
|
|
16
16
|
s.author = 'Alexander Williams'
|
|
17
17
|
s.email = Base64.decode64("YXdpbGxpYW1zQGFsZXh3aWxsaWFtcy5jYQ==\n")
|
|
@@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|
|
27
27
|
s.add_development_dependency 'minitest-reporters', '~> 1.0.0'
|
|
28
28
|
s.add_development_dependency 'simplecov'
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
s.licenses = ['MPL-2.0']
|
|
31
31
|
s.required_ruby_version = ::Gem::Requirement.new("~> 1.9")
|
|
32
32
|
|
|
33
33
|
s.post_install_message = "C.R.E.A.M."
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cache_rules
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -76,7 +76,7 @@ dependencies:
|
|
|
76
76
|
- !ruby/object:Gem::Version
|
|
77
77
|
version: '0'
|
|
78
78
|
description: CacheRules validates requests and responses for cached HTTP data based
|
|
79
|
-
on RFCs 7230-7235. The goal is to
|
|
79
|
+
on RFCs 7230-7235. The goal is to facilitate implementation of well-behaved caching
|
|
80
80
|
solutions which adhere to RFC standards.
|
|
81
81
|
email: !binary |-
|
|
82
82
|
YXdpbGxpYW1zQGFsZXh3aWxsaWFtcy5jYQ==
|
|
@@ -105,7 +105,8 @@ files:
|
|
|
105
105
|
- test/test_tables.rb
|
|
106
106
|
- test/test_validations.rb
|
|
107
107
|
homepage: https://unscramble.co.jp
|
|
108
|
-
licenses:
|
|
108
|
+
licenses:
|
|
109
|
+
- MPL-2.0
|
|
109
110
|
post_install_message: C.R.E.A.M.
|
|
110
111
|
rdoc_options: []
|
|
111
112
|
require_paths:
|