httpimagestore 1.4.1 → 1.5.0
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/.idea/.name +1 -0
- data/.idea/.rakeTasks +7 -0
- data/.idea/codeStyleSettings.xml +13 -0
- data/.idea/dictionaries/wcc.xml +8 -0
- data/.idea/encodings.xml +5 -0
- data/.idea/httpimagestore.iml +69 -0
- data/.idea/jenkinsSettings.xml +9 -0
- data/.idea/misc.xml +5 -0
- data/.idea/modules.xml +9 -0
- data/.idea/scopes/scope_settings.xml +5 -0
- data/.idea/vcs.xml +7 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +4 -4
- data/README.md +55 -33
- data/VERSION +1 -1
- data/bin/httpimagestore +19 -5
- data/features/cache-control.feature +8 -9
- data/features/compatibility.feature +46 -21
- data/features/error-reporting.feature +15 -16
- data/features/flexi.feature +4 -5
- data/features/health-check.feature +1 -2
- data/features/request-matching.feature +211 -0
- data/features/s3-store-and-thumbnail.feature +3 -10
- data/features/storage.feature +7 -9
- data/httpimagestore.gemspec +17 -5
- data/lib/httpimagestore/configuration/handler.rb +55 -30
- data/lib/httpimagestore/configuration/output.rb +51 -2
- data/spec/configuration_handler_spec.rb +4 -22
- data/spec/configuration_output_spec.rb +86 -2
- metadata +17 -5
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: httpimagestore
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.5.0
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-10-
|
|
12
|
+
date: 2013-10-22 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: unicorn-cuba-base
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - ~>
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 1.1.
|
|
21
|
+
version: 1.1.2
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ~>
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 1.1.
|
|
29
|
+
version: 1.1.2
|
|
30
30
|
- !ruby/object:Gem::Dependency
|
|
31
31
|
name: httpthumbnailer-client
|
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -246,6 +246,17 @@ extra_rdoc_files:
|
|
|
246
246
|
- README.md
|
|
247
247
|
files:
|
|
248
248
|
- .document
|
|
249
|
+
- .idea/.name
|
|
250
|
+
- .idea/.rakeTasks
|
|
251
|
+
- .idea/codeStyleSettings.xml
|
|
252
|
+
- .idea/dictionaries/wcc.xml
|
|
253
|
+
- .idea/encodings.xml
|
|
254
|
+
- .idea/httpimagestore.iml
|
|
255
|
+
- .idea/jenkinsSettings.xml
|
|
256
|
+
- .idea/misc.xml
|
|
257
|
+
- .idea/modules.xml
|
|
258
|
+
- .idea/scopes/scope_settings.xml
|
|
259
|
+
- .idea/vcs.xml
|
|
249
260
|
- .rspec
|
|
250
261
|
- Gemfile
|
|
251
262
|
- Gemfile.lock
|
|
@@ -259,6 +270,7 @@ files:
|
|
|
259
270
|
- features/error-reporting.feature
|
|
260
271
|
- features/flexi.feature
|
|
261
272
|
- features/health-check.feature
|
|
273
|
+
- features/request-matching.feature
|
|
262
274
|
- features/s3-store-and-thumbnail.feature
|
|
263
275
|
- features/step_definitions/httpimagestore_steps.rb
|
|
264
276
|
- features/storage.feature
|
|
@@ -312,7 +324,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
312
324
|
version: '0'
|
|
313
325
|
segments:
|
|
314
326
|
- 0
|
|
315
|
-
hash:
|
|
327
|
+
hash: 1314462780475505822
|
|
316
328
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
317
329
|
none: false
|
|
318
330
|
requirements:
|